Skip to content

Commit 905ed9b

Browse files
committed
fix: module prefix
1 parent 1cb9709 commit 905ed9b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

main.tf

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ module "SNS" {
1616
}
1717

1818
resource "aws_lambda_invocation" "notify" {
19-
function_name = SNS.lambda_function_name
19+
function_name = module.SNS.lambda_function_name
2020

2121
input = jsonencode({
22-
instance_id = ec2.id_instance
22+
instance_id = module.ec2.id_instance
2323
})
2424
}

0 commit comments

Comments
 (0)