Skip to content

Latest commit

 

History

History
118 lines (90 loc) · 1.94 KB

aws_outposts_outpost.md

File metadata and controls

118 lines (90 loc) · 1.94 KB

aws_outposts_outpost

back

Index

Terraform

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

top

Example Usage

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

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

top

Variables

variable "arn" {
  description = "(optional)"
  type        = string
  default     = null
}

variable "name" {
  description = "(optional)"
  type        = string
  default     = null
}

top

Datasource

data "aws_outposts_outpost" "this" {
  # arn - (optional) is a type of string
  arn = var.arn
  # name - (optional) is a type of string
  name = var.name
}

top

Outputs

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

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

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

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

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

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

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

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

output "this" {
  value = aws_outposts_outpost.this
}

top