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