Skip to content

Latest commit

 

History

History
99 lines (76 loc) · 1.72 KB

fortios_system_affinitypacketredistribution.md

File metadata and controls

99 lines (76 loc) · 1.72 KB

fortios_system_affinitypacketredistribution

back

Index

Terraform

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

top

Example Usage

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

  # affinity_cpumask - (required) is a type of string
  affinity_cpumask = null
  # fosid - (required) is a type of number
  fosid = null
  # interface - (required) is a type of string
  interface = null
  # rxqid - (required) is a type of number
  rxqid = null
}

top

Variables

variable "affinity_cpumask" {
  description = "(required)"
  type        = string
}

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

variable "interface" {
  description = "(required)"
  type        = string
}

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

top

Resource

resource "fortios_system_affinitypacketredistribution" "this" {
  # affinity_cpumask - (required) is a type of string
  affinity_cpumask = var.affinity_cpumask
  # fosid - (required) is a type of number
  fosid = var.fosid
  # interface - (required) is a type of string
  interface = var.interface
  # rxqid - (required) is a type of number
  rxqid = var.rxqid
}

top

Outputs

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

output "this" {
  value = fortios_system_affinitypacketredistribution.this
}

top