Skip to content

Latest commit

 

History

History
82 lines (60 loc) · 1.33 KB

File metadata and controls

82 lines (60 loc) · 1.33 KB

fortios_firewall_internetservicecustomgroup

back

Index

Terraform

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

top

Example Usage

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

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

top

Variables

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

top

Datasource

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

top

Outputs

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

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

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

output "this" {
  value = fortios_firewall_internetservicecustomgroup.this
}

top