Skip to content

Latest commit

 

History

History
99 lines (72 loc) · 1.75 KB

fortios_system_fortimanager.md

File metadata and controls

99 lines (72 loc) · 1.75 KB

fortios_system_fortimanager

back

Index

Terraform

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

top

Example Usage

module "fortios_system_fortimanager" {
  source = "./modules/fortios/d/fortios_system_fortimanager"

}

top

Variables

top

Datasource

data "fortios_system_fortimanager" "this" {
}

top

Outputs

output "central_management" {
  description = "returns a string"
  value       = data.fortios_system_fortimanager.this.central_management
}

output "central_mgmt_auto_backup" {
  description = "returns a string"
  value       = data.fortios_system_fortimanager.this.central_mgmt_auto_backup
}

output "central_mgmt_schedule_config_restore" {
  description = "returns a string"
  value       = data.fortios_system_fortimanager.this.central_mgmt_schedule_config_restore
}

output "central_mgmt_schedule_script_restore" {
  description = "returns a string"
  value       = data.fortios_system_fortimanager.this.central_mgmt_schedule_script_restore
}

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

output "ip" {
  description = "returns a string"
  value       = data.fortios_system_fortimanager.this.ip
}

output "ipsec" {
  description = "returns a string"
  value       = data.fortios_system_fortimanager.this.ipsec
}

output "vdom" {
  description = "returns a string"
  value       = data.fortios_system_fortimanager.this.vdom
}

output "this" {
  value = fortios_system_fortimanager.this
}

top