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