Skip to content

Latest commit

 

History

History
93 lines (70 loc) · 1.58 KB

fortios_firewall_internetserviceappend.md

File metadata and controls

93 lines (70 loc) · 1.58 KB

fortios_firewall_internetserviceappend

back

Index

Terraform

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

top

Example Usage

module "fortios_firewall_internetserviceappend" {
  source = "./modules/fortios/r/fortios_firewall_internetserviceappend"

  # append_port - (optional) is a type of number
  append_port = null
  # match_port - (optional) is a type of number
  match_port = null
}

top

Variables

variable "append_port" {
  description = "(optional)"
  type        = number
  default     = null
}

variable "match_port" {
  description = "(optional)"
  type        = number
  default     = null
}

top

Resource

resource "fortios_firewall_internetserviceappend" "this" {
  # append_port - (optional) is a type of number
  append_port = var.append_port
  # match_port - (optional) is a type of number
  match_port = var.match_port
}

top

Outputs

output "append_port" {
  description = "returns a number"
  value       = fortios_firewall_internetserviceappend.this.append_port
}

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

output "match_port" {
  description = "returns a number"
  value       = fortios_firewall_internetserviceappend.this.match_port
}

output "this" {
  value = fortios_firewall_internetserviceappend.this
}

top