Skip to content

Latest commit

 

History

History
104 lines (76 loc) · 1.82 KB

fortios_systemsnmp_sysinfo.md

File metadata and controls

104 lines (76 loc) · 1.82 KB

fortios_systemsnmp_sysinfo

back

Index

Terraform

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

top

Example Usage

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

}

top

Variables

top

Datasource

data "fortios_systemsnmp_sysinfo" "this" {
}

top

Outputs

output "contact_info" {
  description = "returns a string"
  value       = data.fortios_systemsnmp_sysinfo.this.contact_info
}

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

output "engine_id" {
  description = "returns a string"
  value       = data.fortios_systemsnmp_sysinfo.this.engine_id
}

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

output "location" {
  description = "returns a string"
  value       = data.fortios_systemsnmp_sysinfo.this.location
}

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

output "trap_high_cpu_threshold" {
  description = "returns a number"
  value       = data.fortios_systemsnmp_sysinfo.this.trap_high_cpu_threshold
}

output "trap_log_full_threshold" {
  description = "returns a number"
  value       = data.fortios_systemsnmp_sysinfo.this.trap_log_full_threshold
}

output "trap_low_memory_threshold" {
  description = "returns a number"
  value       = data.fortios_systemsnmp_sysinfo.this.trap_low_memory_threshold
}

output "this" {
  value = fortios_systemsnmp_sysinfo.this
}

top