integration: Fix broken test in externallb

Running `terraform validate` on `externallb/kubernetes.tf` was failing
because resource name can't contain ":".
This commit is contained in:
Ariel Mashraki 2018-10-20 18:27:15 +03:00
parent 7dca8a78d2
commit d63c47149d
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ resource "aws_autoscaling_attachment" "extlb-my-other-elb-master-us-test-1a" {
autoscaling_group_name = "${aws_autoscaling_group.master-us-test-1a-masters-externallb-example-com.id}"
}
resource "aws_autoscaling_attachment" "exttg-aws:my-tg--0123456789abcdef-master-us-test-1a" {
resource "aws_autoscaling_attachment" "exttg-aws_my-tg--0123456789abcdef-master-us-test-1a" {
alb_target_group_arn = "aws:arn:elasticloadbalancing:us-test-1a:123456789012:targetgroup/my-tg/0123456789abcdef"
autoscaling_group_name = "${aws_autoscaling_group.master-us-test-1a-masters-externallb-example-com.id}"
}