Skip to content

Latest commit

 

History

History
105 lines (81 loc) · 1.65 KB

File metadata and controls

105 lines (81 loc) · 1.65 KB

fortios_system_proxyarp

back

Index

Terraform

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

top

Example Usage

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

Variables

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

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

Outputs

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