Skip to content

Latest commit

 

History

History
78 lines (57 loc) · 1.14 KB

fortios_system_ipiptunnellist.md

File metadata and controls

78 lines (57 loc) · 1.14 KB

fortios_system_ipiptunnellist

back

Index

Terraform

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

top

Example Usage

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

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

top

Variables

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

top

Datasource

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

top

Outputs

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

output "namelist" {
  description = "returns a list of string"
  value       = data.fortios_system_ipiptunnellist.this.namelist
}

output "this" {
  value = fortios_system_ipiptunnellist.this
}

top