Skip to content

Latest commit

 

History

History
85 lines (61 loc) · 1.3 KB

File metadata and controls

85 lines (61 loc) · 1.3 KB

fortios_system_fssopolling

back

Index

Terraform

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

top

Example Usage

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

}

top

Variables

top

Datasource

data "fortios_system_fssopolling" "this" {
}

top

Outputs

output "auth_password" {
  description = "returns a string"
  value       = data.fortios_system_fssopolling.this.auth_password
  sensitive   = true
}

output "authentication" {
  description = "returns a string"
  value       = data.fortios_system_fssopolling.this.authentication
}

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

output "listening_port" {
  description = "returns a number"
  value       = data.fortios_system_fssopolling.this.listening_port
}

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

output "this" {
  value = fortios_system_fssopolling.this
}

top