Skip to content

Latest commit

 

History

History
72 lines (52 loc) · 1020 Bytes

File metadata and controls

72 lines (52 loc) · 1020 Bytes

fortios_system_license_vm

back

Index

Terraform

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

top

Example Usage

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

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

top

Variables

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

top

Resource

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

top

Outputs

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

output "this" {
  value = fortios_system_license_vm.this
}

top