You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
module"aviatrix_azure_spoke_native_peering" {
source="./modules/aviatrix/r/aviatrix_azure_spoke_native_peering"# spoke_account_name - (required) is a type of stringspoke_account_name=null# spoke_region - (required) is a type of stringspoke_region=null# spoke_vpc_id - (required) is a type of stringspoke_vpc_id=null# transit_gateway_name - (required) is a type of stringtransit_gateway_name=null
}
variable"spoke_account_name" {
description="(required) - An Aviatrix account that corresponds to a subscription in Azure."type=string
}
variable"spoke_region" {
description="(required) - Spoke VNet region."type=string
}
variable"spoke_vpc_id" {
description="(required) - Combination of the Spoke VNet name and resource group."type=string
}
variable"transit_gateway_name" {
description="(required) - Name of an azure transit gateway with transit firenet enabled."type=string
}
resource"aviatrix_azure_spoke_native_peering""this" {
# spoke_account_name - (required) is a type of stringspoke_account_name=var.spoke_account_name# spoke_region - (required) is a type of stringspoke_region=var.spoke_region# spoke_vpc_id - (required) is a type of stringspoke_vpc_id=var.spoke_vpc_id# transit_gateway_name - (required) is a type of stringtransit_gateway_name=var.transit_gateway_name
}