back
terraform {
required_providers {
fortios = ">= 1.11.0"
}
}
top
module "fortios_ips_rulesettings" {
source = "./modules/fortios/r/fortios_ips_rulesettings"
# fosid - (optional) is a type of number
fosid = null
}
top
variable "fosid" {
description = "(optional)"
type = number
default = null
}
top
resource "fortios_ips_rulesettings" "this" {
# fosid - (optional) is a type of number
fosid = var.fosid
}
top
output "fosid" {
description = "returns a number"
value = fortios_ips_rulesettings.this.fosid
}
output "id" {
description = "returns a string"
value = fortios_ips_rulesettings.this.id
}
output "this" {
value = fortios_ips_rulesettings.this
}
top