Skip to content

Commit

Permalink
Merge pull request #93 from Ontotext-AD/GDB-10857-fix_variable
Browse files Browse the repository at this point in the history
Added missing default for tls_certificate_path
  • Loading branch information
viktor-ribchev authored Oct 16, 2024
2 parents 6d57577 + 2acacbc commit 03bb04b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ az vm image terms accept --offer graphdb-ee --plan graphdb-byol --publisher onto
| gateway\_probe\_interval | Interval in seconds between the health probe checks | `number` | `10` | no |
| gateway\_probe\_timeout | Timeout in seconds for the health probe checks | `number` | `1` | no |
| gateway\_probe\_threshold | Number of consecutive health checks to consider the probe passing or failing | `number` | `2` | no |
| tls\_certificate\_path | Path to a TLS certificate that will be imported in Azure Key Vault and used in the Application Gateway TLS listener for GraphDB. Either tls\_certificate\_path or tls\_certificate\_id must be provided. | `string` | n/a | yes |
| tls\_certificate\_path | Path to a TLS certificate that will be imported in Azure Key Vault and used in the Application Gateway TLS listener for GraphDB. Either tls\_certificate\_path or tls\_certificate\_id must be provided. | `string` | `null` | no |
| tls\_certificate\_password | TLS certificate password for password-protected certificates. | `string` | `null` | no |
| tls\_certificate\_id | Resource identifier for a TLS certificate secret from a Key Vault. Overrides tls\_certificate\_path. Either tls\_certificate\_id or tls\_certificate\_path must be provided. | `string` | `null` | no |
| tls\_certificate\_identity\_id | Identifier of a managed identity giving access to the TLS certificate specified with tls\_certificate\_id | `string` | `null` | no |
Expand Down
1 change: 1 addition & 0 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,7 @@ variable "gateway_probe_threshold" {
variable "tls_certificate_path" {
description = "Path to a TLS certificate that will be imported in Azure Key Vault and used in the Application Gateway TLS listener for GraphDB. Either tls_certificate_path or tls_certificate_id must be provided."
type = string
default = null
}

variable "tls_certificate_password" {
Expand Down

0 comments on commit 03bb04b

Please sign in to comment.