Skip to content

Latest commit

 

History

History
87 lines (64 loc) · 1.41 KB

fortios_firewall_internetservicegroup.md

File metadata and controls

87 lines (64 loc) · 1.41 KB

fortios_firewall_internetservicegroup

back

Index

Terraform

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

top

Example Usage

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

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

top

Variables

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

top

Datasource

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

top

Outputs

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

output "direction" {
  description = "returns a string"
  value       = data.fortios_firewall_internetservicegroup.this.direction
}

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

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

output "this" {
  value = fortios_firewall_internetservicegroup.this
}

top