1.3 KiB
1.3 KiB
layout | page_title | sidebar_current | description |
---|---|---|---|
aws | AWS: aws_launch_configuration | docs-aws-resource-launch-config | Provides a resource to create a new launch configuration, used for autoscaling groups. |
aws_launch_configuration
Provides a resource to create a new launch configuration, used for autoscaling groups.
Example Usage
resource "aws_launch_configuration" "as_conf" {
name = "web_config"
image_id = "ami-1234"
instance_type = "m1.small"
}
Argument Reference
The following arguments are supported:
name
- (Required) The name of the launch configuration.image_id
- (Required) The EC2 image ID to launch.instance_type
- (Required) The size of instance to launch.iam_instance_profile
- (Optional) The IAM instance profile to associate with launched instances.key_name
- (Optional) The key name that should be used for the instance.security_groups
- (Optional) A list of associated security group IDS.associate_public_ip_address
- (Optional) Associate a public ip address with an instance in a VPC.user_data
- (Optional) The user data to provide when launching the instance.
Attributes Reference
The following attributes are exported:
id
- The ID of the launch configuration.