Skip to content

Commit ca1663a

Browse files
committed
ecs-cluster,s3-logs: typo
1 parent 60509da commit ca1663a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ecs-cluster/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ resource "aws_launch_configuration" "main" {
178178
iam_instance_profile = "${var.iam_instance_profile}"
179179
key_name = "${var.key_name}"
180180
security_groups = ["${aws_security_group.cluster.id}"]
181-
user_data = "${template_file.cloud_config.rendered}"
181+
user_data = "${data.template_file.cloud_config.rendered}"
182182
associate_public_ip_address = "${var.associate_public_ip_address}"
183183

184184
# root

s3-logs/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ resource "aws_s3_bucket" "logs" {
2424
Environment = "${var.environment}"
2525
}
2626

27-
policy = "${template_file.policy.rendered}"
27+
policy = "${data.template_file.policy.rendered}"
2828
}
2929

3030
output "id" {

0 commit comments

Comments
 (0)