Skip to content

Latest commit

 

History

History
145 lines (116 loc) · 2.67 KB

aci_epg_to_contract.md

File metadata and controls

145 lines (116 loc) · 2.67 KB

aci_epg_to_contract

back

Index

Terraform

terraform {
  required_providers {
    aci = ">= 0.5.4"
  }
}

top

Example Usage

module "aci_epg_to_contract" {
  source = "./modules/aci/r/aci_epg_to_contract"

  # annotation - (optional) is a type of string
  annotation = null
  # application_epg_dn - (required) is a type of string
  application_epg_dn = null
  # contract_dn - (required) is a type of string
  contract_dn = null
  # contract_type - (required) is a type of string
  contract_type = null
  # description - (optional) is a type of string
  description = null
  # match_t - (optional) is a type of string
  match_t = null
  # prio - (optional) is a type of string
  prio = null
}

top

Variables

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

variable "application_epg_dn" {
  description = "(required)"
  type        = string
}

variable "contract_dn" {
  description = "(required)"
  type        = string
}

variable "contract_type" {
  description = "(required)"
  type        = string
}

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

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

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

top

Resource

resource "aci_epg_to_contract" "this" {
  # annotation - (optional) is a type of string
  annotation = var.annotation
  # application_epg_dn - (required) is a type of string
  application_epg_dn = var.application_epg_dn
  # contract_dn - (required) is a type of string
  contract_dn = var.contract_dn
  # contract_type - (required) is a type of string
  contract_type = var.contract_type
  # description - (optional) is a type of string
  description = var.description
  # match_t - (optional) is a type of string
  match_t = var.match_t
  # prio - (optional) is a type of string
  prio = var.prio
}

top

Outputs

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

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

output "match_t" {
  description = "returns a string"
  value       = aci_epg_to_contract.this.match_t
}

output "prio" {
  description = "returns a string"
  value       = aci_epg_to_contract.this.prio
}

output "this" {
  value = aci_epg_to_contract.this
}

top