Skip to content

Latest commit

 

History

History
118 lines (92 loc) · 2.13 KB

fortios_system_fssopolling.md

File metadata and controls

118 lines (92 loc) · 2.13 KB

fortios_system_fssopolling

back

Index

Terraform

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

top

Example Usage

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

  # auth_password - (optional) is a type of string
  auth_password = null
  # authentication - (optional) is a type of string
  authentication = null
  # listening_port - (optional) is a type of number
  listening_port = null
  # status - (optional) is a type of string
  status = null
}

top

Variables

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

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

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

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

top

Resource

resource "fortios_system_fssopolling" "this" {
  # auth_password - (optional) is a type of string
  auth_password = var.auth_password
  # authentication - (optional) is a type of string
  authentication = var.authentication
  # listening_port - (optional) is a type of number
  listening_port = var.listening_port
  # status - (optional) is a type of string
  status = var.status
}

top

Outputs

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

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

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

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

output "this" {
  value = fortios_system_fssopolling.this
}

top