Skip to content

Latest commit

 

History

History
117 lines (91 loc) · 1.94 KB

File metadata and controls

117 lines (91 loc) · 1.94 KB

fortios_webproxy_debugurl

back

Index

Terraform

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

top

Example Usage

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

  # exact - (optional) is a type of string
  exact = null
  # name - (optional) is a type of string
  name = null
  # status - (optional) is a type of string
  status = null
  # url_pattern - (required) is a type of string
  url_pattern = null
}

top

Variables

variable "exact" {
  description = "(optional)"
  type        = string
  default     = null
}

variable "name" {
  description = "(optional)"
  type        = string
  default     = null
}

variable "status" {
  description = "(optional)"
  type        = string
  default     = null
}

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

top

Resource

resource "fortios_webproxy_debugurl" "this" {
  # exact - (optional) is a type of string
  exact = var.exact
  # name - (optional) is a type of string
  name = var.name
  # status - (optional) is a type of string
  status = var.status
  # url_pattern - (required) is a type of string
  url_pattern = var.url_pattern
}

top

Outputs

output "exact" {
  description = "returns a string"
  value       = fortios_webproxy_debugurl.this.exact
}

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

output "name" {
  description = "returns a string"
  value       = fortios_webproxy_debugurl.this.name
}

output "status" {
  description = "returns a string"
  value       = fortios_webproxy_debugurl.this.status
}

output "this" {
  value = fortios_webproxy_debugurl.this
}

top