Skip to content

Latest commit

 

History

History
78 lines (57 loc) · 1.33 KB

File metadata and controls

78 lines (57 loc) · 1.33 KB

fortios_switchcontroller_networkmonitorsettings

back

Index

Terraform

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

top

Example Usage

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

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

top

Variables

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

top

Resource

resource "fortios_switchcontroller_networkmonitorsettings" "this" {
  # network_monitoring - (optional) is a type of string
  network_monitoring = var.network_monitoring
}

top

Outputs

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

output "network_monitoring" {
  description = "returns a string"
  value       = fortios_switchcontroller_networkmonitorsettings.this.network_monitoring
}

output "this" {
  value = fortios_switchcontroller_networkmonitorsettings.this
}

top