Skip to content

Latest commit

 

History

History
82 lines (60 loc) · 1.19 KB

aws_cloudformation_export.md

File metadata and controls

82 lines (60 loc) · 1.19 KB

aws_cloudformation_export

back

Index

Terraform

terraform {
  required_providers {
    aws = ">= 3.35.0"
  }
}

top

Example Usage

module "aws_cloudformation_export" {
  source = "./modules/aws/d/aws_cloudformation_export"

  # name - (required) is a type of string
  name = null
}

top

Variables

variable "name" {
  description = "(required)"
  type        = string
}

top

Datasource

data "aws_cloudformation_export" "this" {
  # name - (required) is a type of string
  name = var.name
}

top

Outputs

output "exporting_stack_id" {
  description = "returns a string"
  value       = data.aws_cloudformation_export.this.exporting_stack_id
}

output "id" {
  description = "returns a string"
  value       = data.aws_cloudformation_export.this.id
}

output "value" {
  description = "returns a string"
  value       = data.aws_cloudformation_export.this.value
}

output "this" {
  value = aws_cloudformation_export.this
}

top