Skip to content

Latest commit

 

History

History
87 lines (64 loc) · 1.32 KB

fortios_system_sessionhelper.md

File metadata and controls

87 lines (64 loc) · 1.32 KB

fortios_system_sessionhelper

back

Index

Terraform

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

top

Example Usage

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

  # fosid - (required) is a type of number
  fosid = null
}

top

Variables

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

top

Datasource

data "fortios_system_sessionhelper" "this" {
  # fosid - (required) is a type of number
  fosid = var.fosid
}

top

Outputs

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

output "name" {
  description = "returns a string"
  value       = data.fortios_system_sessionhelper.this.name
}

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

output "protocol" {
  description = "returns a number"
  value       = data.fortios_system_sessionhelper.this.protocol
}

output "this" {
  value = fortios_system_sessionhelper.this
}

top