Skip to content

Latest commit

 

History

History
123 lines (96 loc) · 2.46 KB

fortios_system_autoinstall.md

File metadata and controls

123 lines (96 loc) · 2.46 KB

fortios_system_autoinstall

back

Index

Terraform

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

top

Example Usage

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

  # auto_install_config - (optional) is a type of string
  auto_install_config = null
  # auto_install_image - (optional) is a type of string
  auto_install_image = null
  # default_config_file - (optional) is a type of string
  default_config_file = null
  # default_image_file - (optional) is a type of string
  default_image_file = null
}

top

Variables

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

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

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

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

top

Resource

resource "fortios_system_autoinstall" "this" {
  # auto_install_config - (optional) is a type of string
  auto_install_config = var.auto_install_config
  # auto_install_image - (optional) is a type of string
  auto_install_image = var.auto_install_image
  # default_config_file - (optional) is a type of string
  default_config_file = var.default_config_file
  # default_image_file - (optional) is a type of string
  default_image_file = var.default_image_file
}

top

Outputs

output "auto_install_config" {
  description = "returns a string"
  value       = fortios_system_autoinstall.this.auto_install_config
}

output "auto_install_image" {
  description = "returns a string"
  value       = fortios_system_autoinstall.this.auto_install_image
}

output "default_config_file" {
  description = "returns a string"
  value       = fortios_system_autoinstall.this.default_config_file
}

output "default_image_file" {
  description = "returns a string"
  value       = fortios_system_autoinstall.this.default_image_file
}

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

output "this" {
  value = fortios_system_autoinstall.this
}

top