Skip to content

Latest commit

 

History

History
78 lines (57 loc) · 1.09 KB

fortios_antivirus_heuristic.md

File metadata and controls

78 lines (57 loc) · 1.09 KB

fortios_antivirus_heuristic

back

Index

Terraform

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

top

Example Usage

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

  # mode - (optional) is a type of string
  mode = null
}

top

Variables

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

top

Resource

resource "fortios_antivirus_heuristic" "this" {
  # mode - (optional) is a type of string
  mode = var.mode
}

top

Outputs

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

output "mode" {
  description = "returns a string"
  value       = fortios_antivirus_heuristic.this.mode
}

output "this" {
  value = fortios_antivirus_heuristic.this
}

top