Skip to content

Latest commit

 

History

History
99 lines (72 loc) · 1.8 KB

fortios_system_managementtunnel.md

File metadata and controls

99 lines (72 loc) · 1.8 KB

fortios_system_managementtunnel

back

Index

Terraform

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

top

Example Usage

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

}

top

Variables

top

Datasource

data "fortios_system_managementtunnel" "this" {
}

top

Outputs

output "allow_collect_statistics" {
  description = "returns a string"
  value       = data.fortios_system_managementtunnel.this.allow_collect_statistics
}

output "allow_config_restore" {
  description = "returns a string"
  value       = data.fortios_system_managementtunnel.this.allow_config_restore
}

output "allow_push_configuration" {
  description = "returns a string"
  value       = data.fortios_system_managementtunnel.this.allow_push_configuration
}

output "allow_push_firmware" {
  description = "returns a string"
  value       = data.fortios_system_managementtunnel.this.allow_push_firmware
}

output "authorized_manager_only" {
  description = "returns a string"
  value       = data.fortios_system_managementtunnel.this.authorized_manager_only
}

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

output "serial_number" {
  description = "returns a string"
  value       = data.fortios_system_managementtunnel.this.serial_number
}

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

output "this" {
  value = fortios_system_managementtunnel.this
}

top