Skip to content

Latest commit

 

History

History
72 lines (52 loc) · 1.09 KB

aviatrix_segmentation_security_domain.md

File metadata and controls

72 lines (52 loc) · 1.09 KB

aviatrix_segmentation_security_domain

back

Index

Terraform

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

top

Example Usage

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

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

top

Variables

variable "domain_name" {
  description = "(required) - Security domain name."
  type        = string
}

top

Resource

resource "aviatrix_segmentation_security_domain" "this" {
  # domain_name - (required) is a type of string
  domain_name = var.domain_name
}

top

Outputs

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

output "this" {
  value = aviatrix_segmentation_security_domain.this
}

top