Skip to content

Latest commit

 

History

History
99 lines (76 loc) · 1.61 KB

File metadata and controls

99 lines (76 loc) · 1.61 KB

fortios_systemautoupdate_pushupdate

back

Index

Terraform

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

top

Example Usage

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

  # address - (required) is a type of string
  address = null
  # override - (required) is a type of string
  override = null
  # port - (required) is a type of number
  port = null
  # status - (required) is a type of string
  status = null
}

top

Variables

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

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

variable "port" {
  description = "(required)"
  type        = number
}

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

top

Resource

resource "fortios_systemautoupdate_pushupdate" "this" {
  # address - (required) is a type of string
  address = var.address
  # override - (required) is a type of string
  override = var.override
  # port - (required) is a type of number
  port = var.port
  # status - (required) is a type of string
  status = var.status
}

top

Outputs

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

output "this" {
  value = fortios_systemautoupdate_pushupdate.this
}

top