Let's say I have the following Terraform script:
locals {
provisioned_product_vpc_name = "provision-vpc-product"
}
resource "aws_cloudformation_stack" "provisioned_product_vpc" {
name = local.provisioned_product_vpc_name
template_body = "<foobar>"
}
data "aws_cloudformation_stack" "product_vpc" {
name = local.provisioned_product_vpc_name
depends_on = [aws_cloudformation_stack.provisioned_product_vpc]
}
How can I interactively see all the fields that aws_cloudformation_stack.product_vpc has including the values. At the moment I have to manually open the AWS console and look for the correct values there.
Or is this not possible