Skip to content

Latest commit

 

History

History
83 lines (62 loc) · 1.56 KB

aviatrix_vpn_cert_download.md

File metadata and controls

83 lines (62 loc) · 1.56 KB

aviatrix_vpn_cert_download

back

Index

Terraform

terraform {
  required_providers {
    aviatrix = ">= 2.18.2"
  }
}

top

Example Usage

module "aviatrix_vpn_cert_download" {
  source = "./modules/aviatrix/r/aviatrix_vpn_cert_download"

  # download_enabled - (optional) is a type of bool
  download_enabled = null
  # saml_endpoints - (optional) is a type of set of string
  saml_endpoints = []
}

top

Variables

variable "download_enabled" {
  description = "(optional) - Whether the VPN Certificate download is enabled. Supported Values: \"true\", \"false\""
  type        = bool
  default     = null
}

variable "saml_endpoints" {
  description = "(optional) - List of SAML endpoint names for which the downloading should be enabled . Currently, only a single endpoint is supported. Example: [\"saml_endpoint_1\"]."
  type        = set(string)
  default     = null
}

top

Resource

resource "aviatrix_vpn_cert_download" "this" {
  # download_enabled - (optional) is a type of bool
  download_enabled = var.download_enabled
  # saml_endpoints - (optional) is a type of set of string
  saml_endpoints = var.saml_endpoints
}

top

Outputs

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

output "this" {
  value = aviatrix_vpn_cert_download.this
}

top