Skip to content

Latest commit

 

History

History
112 lines (87 loc) · 1.85 KB

fortios_systemreplacemsg_ec.md

File metadata and controls

112 lines (87 loc) · 1.85 KB

fortios_systemreplacemsg_ec

back

Index

Terraform

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

top

Example Usage

module "fortios_systemreplacemsg_ec" {
  source = "./modules/fortios/r/fortios_systemreplacemsg_ec"

  # buffer - (optional) is a type of string
  buffer = null
  # format - (optional) is a type of string
  format = null
  # header - (optional) is a type of string
  header = null
  # msg_type - (required) is a type of string
  msg_type = null
}

top

Variables

variable "buffer" {
  description = "(optional)"
  type        = string
  default     = null
}

variable "format" {
  description = "(optional)"
  type        = string
  default     = null
}

variable "header" {
  description = "(optional)"
  type        = string
  default     = null
}

variable "msg_type" {
  description = "(required)"
  type        = string
}

top

Resource

resource "fortios_systemreplacemsg_ec" "this" {
  # buffer - (optional) is a type of string
  buffer = var.buffer
  # format - (optional) is a type of string
  format = var.format
  # header - (optional) is a type of string
  header = var.header
  # msg_type - (required) is a type of string
  msg_type = var.msg_type
}

top

Outputs

output "format" {
  description = "returns a string"
  value       = fortios_systemreplacemsg_ec.this.format
}

output "header" {
  description = "returns a string"
  value       = fortios_systemreplacemsg_ec.this.header
}

output "id" {
  description = "returns a string"
  value       = fortios_systemreplacemsg_ec.this.id
}

output "this" {
  value = fortios_systemreplacemsg_ec.this
}

top