fortios_antivirus_heuristic back Index Example Usage Variables Resource Outputs 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