Skip to content

Latest commit

 

History

History
100 lines (73 loc) · 1.65 KB

fortios_system_proberesponse.md

File metadata and controls

100 lines (73 loc) · 1.65 KB

fortios_system_proberesponse

back

Index

Terraform

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

top

Example Usage

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

}

top

Variables

top

Datasource

data "fortios_system_proberesponse" "this" {
}

top

Outputs

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

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

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

output "password" {
  description = "returns a string"
  value       = data.fortios_system_proberesponse.this.password
  sensitive   = true
}

output "port" {
  description = "returns a number"
  value       = data.fortios_system_proberesponse.this.port
}

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

output "timeout" {
  description = "returns a number"
  value       = data.fortios_system_proberesponse.this.timeout
}

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

output "this" {
  value = fortios_system_proberesponse.this
}

top