fortios_system_license_vdom back Index Example Usage Variables Resource Outputs 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