Skip to content

Commit

Permalink
Merge pull request #4 from sironite/fix/module
Browse files Browse the repository at this point in the history
fix: variables.tf
  • Loading branch information
TheIronRock95 authored Jul 11, 2023
2 parents f34731a + 8795517 commit ae3ad0a
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,9 @@ No modules.
| resource\_group\_name | The name of the resource group in which to create the VPN server configuration. | `string` | yes |
| vpn\_server\_configuration\_name | The name of the VPN server configuration. | `string` | yes |
| audience | The audience for Azure AD authentication. | `string` | no |
| client\_root\_certificate\_name | The name of the client root certificate. | `string` | no |
| issuer | The issuer for Azure AD authentication. | `string` | no |
| public\_cert\_data | The public certificate data. | `string` | no |
| tenant\_id | The tenant ID for Azure AD authentication. | `string` | no |
| vpn\_authentication\_types | The type of VPN authentication to use. | `list(string)` | no |
| vpn\_protocols | The VPN protocols to use. | `list(string)` | no |
Expand Down
12 changes: 12 additions & 0 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,15 @@ variable "tenant_id" {
description = "The tenant ID for Azure AD authentication."
default = null
}

variable "client_root_certificate_name" {
type = string
description = "The name of the client root certificate."
default = null
}

variable "public_cert_data" {
type = string
description = "The public certificate data."
default = null
}

0 comments on commit ae3ad0a

Please sign in to comment.