Skip to content

Latest commit

 

History

History
122 lines (92 loc) · 2.12 KB

File metadata and controls

122 lines (92 loc) · 2.12 KB

fortios_firewall_addrgrp

back

Index

Terraform

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

top

Example Usage

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

  # name - (required) is a type of string
  name = null
}

top

Variables

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

top

Datasource

data "fortios_firewall_addrgrp" "this" {
  # name - (required) is a type of string
  name = var.name
}

top

Outputs

output "allow_routing" {
  description = "returns a string"
  value       = data.fortios_firewall_addrgrp.this.allow_routing
}

output "color" {
  description = "returns a number"
  value       = data.fortios_firewall_addrgrp.this.color
}

output "comment" {
  description = "returns a string"
  value       = data.fortios_firewall_addrgrp.this.comment
}

output "exclude" {
  description = "returns a string"
  value       = data.fortios_firewall_addrgrp.this.exclude
}

output "exclude_member" {
  description = "returns a list of object"
  value       = data.fortios_firewall_addrgrp.this.exclude_member
}

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

output "member" {
  description = "returns a list of object"
  value       = data.fortios_firewall_addrgrp.this.member
}

output "tagging" {
  description = "returns a list of object"
  value       = data.fortios_firewall_addrgrp.this.tagging
}

output "type" {
  description = "returns a string"
  value       = data.fortios_firewall_addrgrp.this.type
}

output "uuid" {
  description = "returns a string"
  value       = data.fortios_firewall_addrgrp.this.uuid
}

output "visibility" {
  description = "returns a string"
  value       = data.fortios_firewall_addrgrp.this.visibility
}

output "this" {
  value = fortios_firewall_addrgrp.this
}

top