Skip to content

Latest commit

 

History

History
87 lines (64 loc) · 1.41 KB

File metadata and controls

87 lines (64 loc) · 1.41 KB

fortios_system_automationdestination

back

Index

Terraform

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

top

Example Usage

module "fortios_system_automationdestination" {
  source = "./modules/fortios/d/fortios_system_automationdestination"

  # name - (required) is a type of string
  name = null
}

top

Variables

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

top

Datasource

data "fortios_system_automationdestination" "this" {
  # name - (required) is a type of string
  name = var.name
}

top

Outputs

output "destination" {
  description = "returns a list of object"
  value       = data.fortios_system_automationdestination.this.destination
}

output "ha_group_id" {
  description = "returns a number"
  value       = data.fortios_system_automationdestination.this.ha_group_id
}

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

output "type" {
  description = "returns a string"
  value       = data.fortios_system_automationdestination.this.type
}

output "this" {
  value = fortios_system_automationdestination.this
}

top