Skip to content

Latest commit

 

History

History
107 lines (80 loc) · 1.81 KB

fortios_firewall_proxyaddrgrp.md

File metadata and controls

107 lines (80 loc) · 1.81 KB

fortios_firewall_proxyaddrgrp

back

Index

Terraform

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

top

Example Usage

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

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

top

Variables

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

top

Datasource

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

top

Outputs

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

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

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

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

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

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

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

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

output "this" {
  value = fortios_firewall_proxyaddrgrp.this
}

top