Skip to content

Latest commit

 

History

History
97 lines (72 loc) · 1.64 KB

fortios_firewallwildcardfqdn_custom.md

File metadata and controls

97 lines (72 loc) · 1.64 KB

fortios_firewallwildcardfqdn_custom

back

Index

Terraform

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

top

Example Usage

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

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

top

Variables

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

top

Datasource

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

top

Outputs

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

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

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

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

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

output "wildcard_fqdn" {
  description = "returns a string"
  value       = data.fortios_firewallwildcardfqdn_custom.this.wildcard_fqdn
}

output "this" {
  value = fortios_firewallwildcardfqdn_custom.this
}

top