skip to Main Content

How to get the arn of a newly created aws_cloudformation_stack terraform – Amazon web services

I have this resource being created by terraform. How can I reference the arn in the next resource creation? resource "aws_cloudformation_stack" "datadog_forwarder" { name = "datadog-forwarder" capabilities = ["CAPABILITY_IAM", "CAPABILITY_NAMED_IAM", "CAPABILITY_AUTO_EXPAND"] parameters = { DdApiKeySecretArn = "secret_arn", DdSite = "datadoghq.com",…

VIEW QUESTION
Back To Top
Search