Skip to content

Latest commit

 

History

History
78 lines (57 loc) · 1.13 KB

fortios_system_arptablelist.md

File metadata and controls

78 lines (57 loc) · 1.13 KB

fortios_system_arptablelist

back

Index

Terraform

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

top

Example Usage

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

  # filter - (optional) is a type of string
  filter = null
}

top

Variables

variable "filter" {
  description = "(optional)"
  type        = string
  default     = null
}

top

Datasource

data "fortios_system_arptablelist" "this" {
  # filter - (optional) is a type of string
  filter = var.filter
}

top

Outputs

output "fosidlist" {
  description = "returns a list of number"
  value       = data.fortios_system_arptablelist.this.fosidlist
}

output "id" {
  description = "returns a string"
  value       = data.fortios_system_arptablelist.this.id
}

output "this" {
  value = fortios_system_arptablelist.this
}

top