back
terraform {
required_providers {
fortios = ">= 1.11.0"
}
}
top
module "fortios_system_proxyarp" {
source = "./modules/fortios/d/fortios_system_proxyarp"
# fosid - (required) is a type of number
fosid = null
}
top
variable "fosid" {
description = "(required)"
type = number
}
top
data "fortios_system_proxyarp" "this" {
# fosid - (required) is a type of number
fosid = var.fosid
}
top
output "end_ip" {
description = "returns a string"
value = data.fortios_system_proxyarp.this.end_ip
}
output "id" {
description = "returns a string"
value = data.fortios_system_proxyarp.this.id
}
output "interface" {
description = "returns a string"
value = data.fortios_system_proxyarp.this.interface
}
output "ip" {
description = "returns a string"
value = data.fortios_system_proxyarp.this.ip
}
output "this" {
value = fortios_system_proxyarp.this
}
top