Skip to content

Latest commit

 

History

History
99 lines (76 loc) · 1.57 KB

fortios_system_ipv6neighborcache.md

File metadata and controls

99 lines (76 loc) · 1.57 KB

fortios_system_ipv6neighborcache

back

Index

Terraform

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

top

Example Usage

module "fortios_system_ipv6neighborcache" {
  source = "./modules/fortios/r/fortios_system_ipv6neighborcache"

  # fosid - (required) is a type of number
  fosid = null
  # interface - (required) is a type of string
  interface = null
  # ipv6 - (required) is a type of string
  ipv6 = null
  # mac - (required) is a type of string
  mac = null
}

top

Variables

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

variable "interface" {
  description = "(required)"
  type        = string
}

variable "ipv6" {
  description = "(required)"
  type        = string
}

variable "mac" {
  description = "(required)"
  type        = string
}

top

Resource

resource "fortios_system_ipv6neighborcache" "this" {
  # fosid - (required) is a type of number
  fosid = var.fosid
  # interface - (required) is a type of string
  interface = var.interface
  # ipv6 - (required) is a type of string
  ipv6 = var.ipv6
  # mac - (required) is a type of string
  mac = var.mac
}

top

Outputs

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

output "this" {
  value = fortios_system_ipv6neighborcache.this
}

top