Skip to content

Latest commit

 

History

History
92 lines (68 loc) · 1.44 KB

fortios_system_vdomexception.md

File metadata and controls

92 lines (68 loc) · 1.44 KB

fortios_system_vdomexception

back

Index

Terraform

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

top

Example Usage

module "fortios_system_vdomexception" {
  source = "./modules/fortios/d/fortios_system_vdomexception"

  # fosid - (required) is a type of number
  fosid = null
}

top

Variables

variable "fosid" {
  description = "(required)"
  type        = number
}

top

Datasource

data "fortios_system_vdomexception" "this" {
  # fosid - (required) is a type of number
  fosid = var.fosid
}

top

Outputs

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

output "object" {
  description = "returns a string"
  value       = data.fortios_system_vdomexception.this.object
}

output "oid" {
  description = "returns a number"
  value       = data.fortios_system_vdomexception.this.oid
}

output "scope" {
  description = "returns a string"
  value       = data.fortios_system_vdomexception.this.scope
}

output "vdom" {
  description = "returns a list of object"
  value       = data.fortios_system_vdomexception.this.vdom
}

output "this" {
  value = fortios_system_vdomexception.this
}

top