Skip to content

Latest commit

 

History

History
113 lines (89 loc) · 2 KB

File metadata and controls

113 lines (89 loc) · 2 KB

fortios_fmg_system_global

back

Index

Terraform

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

top

Example Usage

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

  # adom_mode - (optional) is a type of string
  adom_mode = null
  # adom_status - (optional) is a type of string
  adom_status = null
  # fortianalyzer_status - (optional) is a type of string
  fortianalyzer_status = null
  # hostname - (optional) is a type of string
  hostname = null
  # timezone - (optional) is a type of string
  timezone = null
}

top

Variables

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

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

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

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

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

top

Resource

resource "fortios_fmg_system_global" "this" {
  # adom_mode - (optional) is a type of string
  adom_mode = var.adom_mode
  # adom_status - (optional) is a type of string
  adom_status = var.adom_status
  # fortianalyzer_status - (optional) is a type of string
  fortianalyzer_status = var.fortianalyzer_status
  # hostname - (optional) is a type of string
  hostname = var.hostname
  # timezone - (optional) is a type of string
  timezone = var.timezone
}

top

Outputs

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

output "this" {
  value = fortios_fmg_system_global.this
}

top