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