Skip to content

Latest commit

 

History

History
77 lines (56 loc) · 1.04 KB

fortios_system_alias.md

File metadata and controls

77 lines (56 loc) · 1.04 KB

fortios_system_alias

back

Index

Terraform

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

top

Example Usage

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

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

top

Variables

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

top

Datasource

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

top

Outputs

output "command" {
  description = "returns a string"
  value       = data.fortios_system_alias.this.command
}

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

output "this" {
  value = fortios_system_alias.this
}

top