Skip to content

Latest commit

 

History

History
108 lines (83 loc) · 1.95 KB

File metadata and controls

108 lines (83 loc) · 1.95 KB

fortios_log_guidisplay

back

Index

Terraform

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

top

Example Usage

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

  # fortiview_unscanned_apps - (optional) is a type of string
  fortiview_unscanned_apps = null
  # resolve_apps - (optional) is a type of string
  resolve_apps = null
  # resolve_hosts - (optional) is a type of string
  resolve_hosts = null
}

top

Variables

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

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

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

top

Resource

resource "fortios_log_guidisplay" "this" {
  # fortiview_unscanned_apps - (optional) is a type of string
  fortiview_unscanned_apps = var.fortiview_unscanned_apps
  # resolve_apps - (optional) is a type of string
  resolve_apps = var.resolve_apps
  # resolve_hosts - (optional) is a type of string
  resolve_hosts = var.resolve_hosts
}

top

Outputs

output "fortiview_unscanned_apps" {
  description = "returns a string"
  value       = fortios_log_guidisplay.this.fortiview_unscanned_apps
}

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

output "resolve_apps" {
  description = "returns a string"
  value       = fortios_log_guidisplay.this.resolve_apps
}

output "resolve_hosts" {
  description = "returns a string"
  value       = fortios_log_guidisplay.this.resolve_hosts
}

output "this" {
  value = fortios_log_guidisplay.this
}

top