fortios_system_proberesponse
back
terraform {
required_providers {
fortios = " >= 1.11.0"
}
}
top
module "fortios_system_proberesponse" {
source = " ./modules/fortios/d/fortios_system_proberesponse"
}
top
top
data "fortios_system_proberesponse" "this" {
}
top
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