Skip to content

Latest commit

 

History

History
99 lines (76 loc) · 1.56 KB

mso_schema_template.md

File metadata and controls

99 lines (76 loc) · 1.56 KB

mso_schema_template

back

Index

Terraform

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

top

Example Usage

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

  # display_name - (required) is a type of string
  display_name = null
  # name - (required) is a type of string
  name = null
  # schema_id - (required) is a type of string
  schema_id = null
  # tenant_id - (required) is a type of string
  tenant_id = null
}

top

Variables

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

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

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

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

top

Resource

resource "mso_schema_template" "this" {
  # display_name - (required) is a type of string
  display_name = var.display_name
  # name - (required) is a type of string
  name = var.name
  # schema_id - (required) is a type of string
  schema_id = var.schema_id
  # tenant_id - (required) is a type of string
  tenant_id = var.tenant_id
}

top

Outputs

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

output "this" {
  value = mso_schema_template.this
}

top