Skip to content

Latest commit

 

History

History
87 lines (64 loc) · 1.42 KB

fortios_firewall_internetservicecustom.md

File metadata and controls

87 lines (64 loc) · 1.42 KB

fortios_firewall_internetservicecustom

back

Index

Terraform

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

top

Example Usage

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

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

top

Variables

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

top

Datasource

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

top

Outputs

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

output "entry" {
  description = "returns a list of object"
  value       = data.fortios_firewall_internetservicecustom.this.entry
}

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

output "reputation" {
  description = "returns a number"
  value       = data.fortios_firewall_internetservicecustom.this.reputation
}

output "this" {
  value = fortios_firewall_internetservicecustom.this
}

top