Skip to content

Latest commit

 

History

History
103 lines (79 loc) · 1.72 KB

fortios_system_replacemsgimage.md

File metadata and controls

103 lines (79 loc) · 1.72 KB

fortios_system_replacemsgimage

back

Index

Terraform

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

top

Example Usage

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

  # image_base64 - (optional) is a type of string
  image_base64 = null
  # image_type - (optional) is a type of string
  image_type = null
  # name - (optional) is a type of string
  name = null
}

top

Variables

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

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

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

top

Resource

resource "fortios_system_replacemsgimage" "this" {
  # image_base64 - (optional) is a type of string
  image_base64 = var.image_base64
  # image_type - (optional) is a type of string
  image_type = var.image_type
  # name - (optional) is a type of string
  name = var.name
}

top

Outputs

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

output "image_type" {
  description = "returns a string"
  value       = fortios_system_replacemsgimage.this.image_type
}

output "name" {
  description = "returns a string"
  value       = fortios_system_replacemsgimage.this.name
}

output "this" {
  value = fortios_system_replacemsgimage.this
}

top