Skip to content

Latest commit

 

History

History
108 lines (83 loc) · 1.7 KB

fortios_system_vdomlink.md

File metadata and controls

108 lines (83 loc) · 1.7 KB

fortios_system_vdomlink

back

Index

Terraform

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

top

Example Usage

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

  # name - (optional) is a type of string
  name = null
  # type - (optional) is a type of string
  type = null
  # vcluster - (optional) is a type of string
  vcluster = null
}

top

Variables

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

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

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

top

Resource

resource "fortios_system_vdomlink" "this" {
  # name - (optional) is a type of string
  name = var.name
  # type - (optional) is a type of string
  type = var.type
  # vcluster - (optional) is a type of string
  vcluster = var.vcluster
}

top

Outputs

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

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

output "type" {
  description = "returns a string"
  value       = fortios_system_vdomlink.this.type
}

output "vcluster" {
  description = "returns a string"
  value       = fortios_system_vdomlink.this.vcluster
}

output "this" {
  value = fortios_system_vdomlink.this
}

top