Skip to content

Latest commit

 

History

History
102 lines (78 loc) · 1.71 KB

File metadata and controls

102 lines (78 loc) · 1.71 KB

fortios_system_vdomradiusserver

back

Index

Terraform

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

top

Example Usage

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

  # name - (optional) is a type of string
  name = null
  # radius_server_vdom - (required) is a type of string
  radius_server_vdom = null
  # status - (optional) is a type of string
  status = null
}

top

Variables

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

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

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

top

Resource

resource "fortios_system_vdomradiusserver" "this" {
  # name - (optional) is a type of string
  name = var.name
  # radius_server_vdom - (required) is a type of string
  radius_server_vdom = var.radius_server_vdom
  # status - (optional) is a type of string
  status = var.status
}

top

Outputs

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

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

output "status" {
  description = "returns a string"
  value       = fortios_system_vdomradiusserver.this.status
}

output "this" {
  value = fortios_system_vdomradiusserver.this
}

top