» Data Source: aws_cloudformation_export

The CloudFormation Export data source allows access to stack exports specified in the Output section of the Cloudformation Template using the optional Export Property.

» Example Usage

data "aws_cloudformation_export" "subnet_id" {
  name = "mySubnetIdExportName"
}

resource "aws_instance" "web" {
  ami           = "ami-abb07bcb"
  instance_type = "t1.micro"
  subnet_id     = "${data.aws_cloudformation_export.subnet_id.value}"
}

» Argument Reference

  • name - (Required) The name of the export as it appears in the console or from list-exports

» Attributes Reference

In addition to all arguments above, the following attributes are exported: