back
terraform {
required_providers {
fortios = ">= 1.11.0"
}
}
top
module "fortios_system_alias" {
source = "./modules/fortios/d/fortios_system_alias"
# name - (required) is a type of string
name = null
}
top
variable "name" {
description = "(required)"
type = string
}
top
data "fortios_system_alias" "this" {
# name - (required) is a type of string
name = var.name
}
top
output "command" {
description = "returns a string"
value = data.fortios_system_alias.this.command
}
output "id" {
description = "returns a string"
value = data.fortios_system_alias.this.id
}
output "this" {
value = fortios_system_alias.this
}
top