Skip to content

Latest commit

 

History

History
108 lines (83 loc) · 1.77 KB

fortios_system_tosbasedpriority.md

File metadata and controls

108 lines (83 loc) · 1.77 KB

fortios_system_tosbasedpriority

back

Index

Terraform

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

top

Example Usage

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

  # fosid - (optional) is a type of number
  fosid = null
  # priority - (optional) is a type of string
  priority = null
  # tos - (optional) is a type of number
  tos = null
}

top

Variables

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

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

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

top

Resource

resource "fortios_system_tosbasedpriority" "this" {
  # fosid - (optional) is a type of number
  fosid = var.fosid
  # priority - (optional) is a type of string
  priority = var.priority
  # tos - (optional) is a type of number
  tos = var.tos
}

top

Outputs

output "fosid" {
  description = "returns a number"
  value       = fortios_system_tosbasedpriority.this.fosid
}

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

output "priority" {
  description = "returns a string"
  value       = fortios_system_tosbasedpriority.this.priority
}

output "tos" {
  description = "returns a number"
  value       = fortios_system_tosbasedpriority.this.tos
}

output "this" {
  value = fortios_system_tosbasedpriority.this
}

top