Skip to content

Latest commit

 

History

History
108 lines (84 loc) · 1.81 KB

mso_schema_site_anp_epg.md

File metadata and controls

108 lines (84 loc) · 1.81 KB

mso_schema_site_anp_epg

back

Index

Terraform

terraform {
  required_providers {
    mso = ">= 0.1.5"
  }
}

top

Example Usage

module "mso_schema_site_anp_epg" {
  source = "./modules/mso/r/mso_schema_site_anp_epg"

  # anp_name - (required) is a type of string
  anp_name = null
  # epg_name - (required) is a type of string
  epg_name = null
  # schema_id - (required) is a type of string
  schema_id = null
  # site_id - (required) is a type of string
  site_id = null
  # template_name - (required) is a type of string
  template_name = null
}

top

Variables

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

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

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

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

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

top

Resource

resource "mso_schema_site_anp_epg" "this" {
  # anp_name - (required) is a type of string
  anp_name = var.anp_name
  # epg_name - (required) is a type of string
  epg_name = var.epg_name
  # schema_id - (required) is a type of string
  schema_id = var.schema_id
  # site_id - (required) is a type of string
  site_id = var.site_id
  # template_name - (required) is a type of string
  template_name = var.template_name
}

top

Outputs

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

output "this" {
  value = mso_schema_site_anp_epg.this
}

top