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