Skip to content

Commit c17e400

Browse files
committed
chore: Updated versions&comments in examples
1 parent d972013 commit c17e400

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

examples/complete/main.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,22 +81,22 @@ EOF
8181
lambda1 = {
8282
type = "AWS_LAMBDA"
8383

84-
# Note: dynamic references (module.aws_lambda_function1.this_lambda_function_arn) do not work unless you create this resource in advance
84+
# Note: dynamic references (module.aws_lambda_function1.lambda_function_arn) do not work unless you create this resource in advance
8585
function_arn = "arn:aws:lambda:eu-west-1:835367859851:function:index_1"
8686
}
8787

8888
lambda2 = {
8989
type = "AWS_LAMBDA"
9090

91-
# Note: dynamic references (module.aws_lambda_function2.this_lambda_function_arn) do not work unless you create this resource in advance
91+
# Note: dynamic references (module.aws_lambda_function2.lambda_function_arn) do not work unless you create this resource in advance
9292
function_arn = "arn:aws:lambda:eu-west-1:835367859851:function:index_2"
9393
# service_role_arn = "arn:aws:iam::835367859851:role/lambda1-service"
9494
}
9595

9696
dynamodb1 = {
9797
type = "AMAZON_DYNAMODB"
9898

99-
# Note: dynamic references (module.dynamodb_table1.this_dynamodb_table_id) do not work unless you create this resource in advance
99+
# Note: dynamic references (module.dynamodb_table1.dynamodb_table_id) do not work unless you create this resource in advance
100100
table_name = "my-table"
101101
region = "eu-west-1"
102102
}

0 commit comments

Comments
 (0)