Skip to content

Latest commit

 

History

History
138 lines (109 loc) · 2.38 KB

fortios_system_vdom.md

File metadata and controls

138 lines (109 loc) · 2.38 KB

fortios_system_vdom

back

Index

Terraform

terraform {
  required_providers {
    fortios = ">= 1.11.0"
  }
}

top

Example Usage

module "fortios_system_vdom" {
  source = "./modules/fortios/r/fortios_system_vdom"

  # flag - (optional) is a type of number
  flag = null
  # name - (optional) is a type of string
  name = null
  # short_name - (optional) is a type of string
  short_name = null
  # temporary - (optional) is a type of number
  temporary = null
  # vcluster_id - (optional) is a type of number
  vcluster_id = null
}

top

Variables

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

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

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

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

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

top

Resource

resource "fortios_system_vdom" "this" {
  # flag - (optional) is a type of number
  flag = var.flag
  # name - (optional) is a type of string
  name = var.name
  # short_name - (optional) is a type of string
  short_name = var.short_name
  # temporary - (optional) is a type of number
  temporary = var.temporary
  # vcluster_id - (optional) is a type of number
  vcluster_id = var.vcluster_id
}

top

Outputs

output "flag" {
  description = "returns a number"
  value       = fortios_system_vdom.this.flag
}

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

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

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

output "temporary" {
  description = "returns a number"
  value       = fortios_system_vdom.this.temporary
}

output "vcluster_id" {
  description = "returns a number"
  value       = fortios_system_vdom.this.vcluster_id
}

output "this" {
  value = fortios_system_vdom.this
}

top