Skip to content

Latest commit

 

History

History
81 lines (60 loc) · 1.52 KB

aviatrix_transit_firenet_policy.md

File metadata and controls

81 lines (60 loc) · 1.52 KB

aviatrix_transit_firenet_policy

back

Index

Terraform

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

top

Example Usage

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

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

top

Variables

variable "inspected_resource_name" {
  description = "(required) - Name of the resource to be added to transit firenet policy."
  type        = string
}

variable "transit_firenet_gateway_name" {
  description = "(required) - Name of the transit firenet gateway."
  type        = string
}

top

Resource

resource "aviatrix_transit_firenet_policy" "this" {
  # inspected_resource_name - (required) is a type of string
  inspected_resource_name = var.inspected_resource_name
  # transit_firenet_gateway_name - (required) is a type of string
  transit_firenet_gateway_name = var.transit_firenet_gateway_name
}

top

Outputs

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

output "this" {
  value = aviatrix_transit_firenet_policy.this
}

top