Skip to content

Latest commit

 

History

History
123 lines (96 loc) · 2.02 KB

File metadata and controls

123 lines (96 loc) · 2.02 KB

fortios_system_console

back

Index

Terraform

terraform {
  required_providers {
    fortios = ">= 1.11.0"
  }
}

top

Example Usage

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

Variables

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

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

Outputs

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