back
terraform {
required_providers {
fortios = ">= 1.11.0"
}
}
top
module "fortios_user_samllist" {
source = "./modules/fortios/d/fortios_user_samllist"
# filter - (optional) is a type of string
filter = null
}
top
variable "filter" {
description = "(optional)"
type = string
default = null
}
top
data "fortios_user_samllist" "this" {
# filter - (optional) is a type of string
filter = var.filter
}
top
output "id" {
description = "returns a string"
value = data.fortios_user_samllist.this.id
}
output "namelist" {
description = "returns a list of string"
value = data.fortios_user_samllist.this.namelist
}
output "this" {
value = fortios_user_samllist.this
}
top