Skip to content

Latest commit

 

History

History
72 lines (52 loc) · 1002 Bytes

fortios_system_license_vdom.md

File metadata and controls

72 lines (52 loc) · 1002 Bytes

fortios_system_license_vdom

back

Index

Terraform

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

top

Example Usage

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

  # license - (required) is a type of string
  license = null
}

top

Variables

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

top

Resource

resource "fortios_system_license_vdom" "this" {
  # license - (required) is a type of string
  license = var.license
}

top

Outputs

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

output "this" {
  value = fortios_system_license_vdom.this
}

top