Skip to content

Latest commit

 

History

History
92 lines (68 loc) · 1.41 KB

fortios_system_sittunnel.md

File metadata and controls

92 lines (68 loc) · 1.41 KB

fortios_system_sittunnel

back

Index

Terraform

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

top

Example Usage

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

  # name - (required) is a type of string
  name = null
}

top

Variables

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

top

Datasource

data "fortios_system_sittunnel" "this" {
  # name - (required) is a type of string
  name = var.name
}

top

Outputs

output "destination" {
  description = "returns a string"
  value       = data.fortios_system_sittunnel.this.destination
}

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

output "interface" {
  description = "returns a string"
  value       = data.fortios_system_sittunnel.this.interface
}

output "ip6" {
  description = "returns a string"
  value       = data.fortios_system_sittunnel.this.ip6
}

output "source" {
  description = "returns a string"
  value       = data.fortios_system_sittunnel.this.source
}

output "this" {
  value = fortios_system_sittunnel.this
}

top