Skip to content

Latest commit

 

History

History
81 lines (60 loc) · 1.29 KB

aviatrix_aws_tgw_peering.md

File metadata and controls

81 lines (60 loc) · 1.29 KB

aviatrix_aws_tgw_peering

back

Index

Terraform

terraform {
  required_providers {
    aviatrix = ">= 2.18.2"
  }
}

top

Example Usage

module "aviatrix_aws_tgw_peering" {
  source = "./modules/aviatrix/r/aviatrix_aws_tgw_peering"

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

top

Variables

variable "tgw_name1" {
  description = "(required) - Name of the first AWS tgw to make a peer pair."
  type        = string
}

variable "tgw_name2" {
  description = "(required) - Name of the second AWS tgw to make a peer pair."
  type        = string
}

top

Resource

resource "aviatrix_aws_tgw_peering" "this" {
  # tgw_name1 - (required) is a type of string
  tgw_name1 = var.tgw_name1
  # tgw_name2 - (required) is a type of string
  tgw_name2 = var.tgw_name2
}

top

Outputs

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

output "this" {
  value = aviatrix_aws_tgw_peering.this
}

top