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