Skip to content

Latest commit

 

History

History
87 lines (64 loc) · 1.27 KB

fortios_system_arptable.md

File metadata and controls

87 lines (64 loc) · 1.27 KB

fortios_system_arptable

back

Index

Terraform

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

top

Example Usage

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

  # fosid - (required) is a type of number
  fosid = null
}

top

Variables

variable "fosid" {
  description = "(required)"
  type        = number
}

top

Datasource

data "fortios_system_arptable" "this" {
  # fosid - (required) is a type of number
  fosid = var.fosid
}

top

Outputs

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