Created
December 4, 2017 10:54
-
-
Save jacoelho/231273b7347b79e81f710558467aa93f to your computer and use it in GitHub Desktop.
alb asg
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
resource "aws_alb_target_group" "test" { | |
name = "test-alb" | |
port = 443 | |
protocol = "HTTPS" | |
vpc_id = "${aws_vpc.test.id}" | |
deregistration_delay = 200 | |
stickiness { | |
type = "lb_cookie" | |
cookie_duration = 10000 | |
} | |
health_check { | |
path = "/health" | |
interval = 60 | |
port = 8081 | |
protocol = "HTTP" | |
timeout = 3 | |
healthy_threshold = 3 | |
unhealthy_threshold = 3 | |
matcher = "200-299" | |
} | |
tags { | |
TestName = "TestAccAWSALBTargetGroup_basic" | |
} | |
} | |
resource "aws_alb_target_group" "another_test" { | |
name = "atest-alb" | |
port = 443 | |
protocol = "HTTPS" | |
vpc_id = "${aws_vpc.test.id}" | |
deregistration_delay = 200 | |
stickiness { | |
type = "lb_cookie" | |
cookie_duration = 10000 | |
} | |
health_check { | |
path = "/health" | |
interval = 60 | |
port = 8081 | |
protocol = "HTTP" | |
timeout = 3 | |
healthy_threshold = 3 | |
unhealthy_threshold = 3 | |
matcher = "200-299" | |
} | |
tags { | |
TestName = "TestAccAWSALBTargetGroup_basic" | |
} | |
} | |
resource "aws_autoscaling_group" "asg" { | |
availability_zones = ["us-west-2a", "us-west-2b", "us-west-2c"] | |
name = "asg-lb-assoc-terraform-test" | |
max_size = 1 | |
min_size = 0 | |
desired_capacity = 0 | |
health_check_grace_period = 300 | |
force_delete = true | |
launch_configuration = "${aws_launch_configuration.as_conf.name}" | |
tag { | |
key = "Name" | |
value = "terraform-asg-lg-assoc-test" | |
propagate_at_launch = true | |
} | |
} | |
resource "aws_launch_configuration" "as_conf" { | |
name = "test_config_%d" | |
image_id = "ami-f34032c3" | |
instance_type = "t1.micro" | |
} | |
resource "aws_vpc" "test" { | |
cidr_block = "10.0.0.0/16" | |
tags { | |
TestName = "TestAccAWSALBTargetGroup_basic" | |
} | |
} | |
resource "aws_autoscaling_attachment" "asg_attachment_foo" { | |
autoscaling_group_name = "${aws_autoscaling_group.asg.id}" | |
alb_target_group_arn = "${aws_alb_target_group.test.arn}" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment