fortios_system_sessionhelper back Index Example Usage Variables Datasource Outputs 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