Skip to content

Latest commit

 

History

History
133 lines (105 loc) · 2.39 KB

File metadata and controls

133 lines (105 loc) · 2.39 KB

fortios_systemautoupdate_tunneling

back

Index

Terraform

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

top

Example Usage

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

  # address - (optional) is a type of string
  address = null
  # password - (optional) is a type of string
  password = null
  # port - (optional) is a type of number
  port = null
  # status - (optional) is a type of string
  status = null
  # username - (optional) is a type of string
  username = null
}

top

Variables

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

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

variable "port" {
  description = "(optional)"
  type        = number
  default     = null
}

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

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

top

Resource

resource "fortios_systemautoupdate_tunneling" "this" {
  # address - (optional) is a type of string
  address = var.address
  # password - (optional) is a type of string
  password = var.password
  # port - (optional) is a type of number
  port = var.port
  # status - (optional) is a type of string
  status = var.status
  # username - (optional) is a type of string
  username = var.username
}

top

Outputs

output "address" {
  description = "returns a string"
  value       = fortios_systemautoupdate_tunneling.this.address
}

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

output "port" {
  description = "returns a number"
  value       = fortios_systemautoupdate_tunneling.this.port
}

output "status" {
  description = "returns a string"
  value       = fortios_systemautoupdate_tunneling.this.status
}

output "username" {
  description = "returns a string"
  value       = fortios_systemautoupdate_tunneling.this.username
}

output "this" {
  value = fortios_systemautoupdate_tunneling.this
}

top