Skip to content

Latest commit

 

History

History
102 lines (79 loc) · 1.8 KB

fortios_fmg_devicemanager_install_device.md

File metadata and controls

102 lines (79 loc) · 1.8 KB

fortios_fmg_devicemanager_install_device

back

Index

Terraform

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

top

Example Usage

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

  # adom - (optional) is a type of string
  adom = null
  # target_devname - (required) is a type of string
  target_devname = null
  # timeout - (optional) is a type of number
  timeout = null
  # vdom - (optional) is a type of string
  vdom = null
}

top

Variables

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

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

variable "timeout" {
  description = "(optional) - Timeout for installing the script to the target, default: 3 minutes"
  type        = number
  default     = null
}

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

top

Resource

resource "fortios_fmg_devicemanager_install_device" "this" {
  # adom - (optional) is a type of string
  adom = var.adom
  # target_devname - (required) is a type of string
  target_devname = var.target_devname
  # timeout - (optional) is a type of number
  timeout = var.timeout
  # vdom - (optional) is a type of string
  vdom = var.vdom
}

top

Outputs

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

output "this" {
  value = fortios_fmg_devicemanager_install_device.this
}

top