-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[GDB-10856] Added External AGW and context path support #91
Conversation
Fix the name of the MR, should start with the Jira issue |
main.tf
Outdated
@@ -158,6 +158,7 @@ module "tls" { | |||
# Creates a public IP address and an Application Gateway for forwarding internet traffic to the GraphDB proxies/instances | |||
module "application_gateway" { | |||
source = "./modules/gateway" | |||
count = var.disable_agw ? 0 : 1 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Follow the formatting of the other modules and leave an empty line between source and count
|
||
# App Configuration | ||
app_configuration_id = module.appconfig.app_configuration_id | ||
app_configuration_endpoint = module.appconfig.app_configuration_endpoint | ||
|
||
# GraphDB Configurations | ||
graphdb_external_address_fqdn = var.graphdb_external_address_fqdn != null ? var.graphdb_external_address_fqdn : module.application_gateway.public_ip_address_fqdn | ||
graphdb_external_address_fqdn = var.graphdb_external_address_fqdn != null ? var.graphdb_external_address_fqdn : (var.disable_agw ? null : module.application_gateway[0].public_ip_address_fqdn) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How does the graphdb.properties
file look like when disable_agw
is true?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This comment is still valid
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
When disabled_agw is true, I have added new validations (will push soon). It uses the Frontend public IP address of the external Application Gateway. It also adds the context path if there is one.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this will produce wrong graphdb.properties
file when using external Application Gateway and graphdb_external_address_fqdn
is not provided.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, external fdqn variable is needed. I will add a note that it is required when disabled_agw
is used.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I still want to see the outputted graphdb.properties
file
modules/gateway/variables.tf
Outdated
@@ -48,13 +48,19 @@ variable "gateway_allowed_address_prefixes" { | |||
default = [] | |||
} | |||
|
|||
# Application gateway specific configurations | |||
# Application gateway specific configurations |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove the trailing whitespace
I didn’t find any instructions in the README for what needs to be done when apg_disable is set to true. What are the steps users should follow to connect to an existing Application Gateway, and what additional configurations are required? |
README.md
Outdated
``` | ||
|
||
_Post-Deployment Actions:_ | ||
• After applying the Terraform code, you must perform the following steps: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This shouldn't be a bullet
|
||
# App Configuration | ||
app_configuration_id = module.appconfig.app_configuration_id | ||
app_configuration_endpoint = module.appconfig.app_configuration_endpoint | ||
|
||
# GraphDB Configurations | ||
graphdb_external_address_fqdn = var.graphdb_external_address_fqdn != null ? var.graphdb_external_address_fqdn : module.application_gateway.public_ip_address_fqdn | ||
graphdb_external_address_fqdn = var.graphdb_external_address_fqdn != null ? var.graphdb_external_address_fqdn : (var.disable_agw ? null : module.application_gateway[0].public_ip_address_fqdn) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This comment is still valid
modules/gateway/outputs.tf
Outdated
} | ||
|
||
# Gateway Backend Adress Pool ID: | ||
# Check if application gateway is enabled and private access is true. If both are available, checks for backend adress pool and retrieves the ID of the first one. Otherwise returns Null. | ||
# If private access is not enabled, if a public gateway exists with a backend address pool and retrieves its ID if present. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If Private access is disabled and there is a Public Gateway, retrieves the first backend address pool ID.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
changed
README.md
Outdated
|
||
_Example Configuration:_ | ||
Example Configuration: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why did you remover the bolding
_Example Configuration:_
README.md
Outdated
graphdb_external_address_fqdn = "your-fqdn-or-ip" | ||
``` | ||
|
||
_Post-Deployment Actions:_ | ||
Notes: | ||
-Setting disable_agw to true allows you to use your existing Application Gateway. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Leave a space after -
.
disable_agw and true should be in ` quotes
Same for context_path
modules/graphdb/variables.tf
Outdated
@@ -307,7 +307,18 @@ variable "user_supplied_scripts" { | |||
} | |||
|
|||
variable "disable_agw" { | |||
description = "Disables the creation of application gateway from the terraform module." | |||
description = "Disables the creation of Application Gateway by the terraform module." |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
terraform > Terraform
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
will change. ty
variables.tf
Outdated
@@ -137,7 +137,7 @@ variable "gateway_enable_private_access" { | |||
} | |||
|
|||
variable "disable_agw" { | |||
description = "Disables the creation of application gateway by the terraform module." | |||
description = "Disables the creation of Application Gateway by the terraform module." |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
terraform > Terraform
@@ -1,5 +1,13 @@ | |||
# GraphDB Azure Terraform Module Changelog | |||
|
|||
## 1.3.4 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These updates should not be here if you rebased properly, also you need to update the Changelog with your changes
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is still valid
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is still valid.
Also you need to add a new version with your changes to the CHANGELOG.md
Fix the MR name |
@@ -1,5 +1,13 @@ | |||
# GraphDB Azure Terraform Module Changelog | |||
|
|||
## 1.3.4 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is still valid
Rebase and squash the commits |
57146ac
to
727bb13
Compare
Squash the commits |
README.md
Outdated
``` | ||
|
||
_Notes_: | ||
- Setting `disable_agw` to true allows you to use your existing Application Gateway. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reword this, Setting disable_agw
to true will disable ....
README.md
Outdated
|
||
_Notes_: | ||
- Setting `disable_agw` to true allows you to use your existing Application Gateway. | ||
- When using `disable_agw` you need to set `graphdb_external_adress_fqdn` as well. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
When using disable_agw
.... > You need to provide graphdb_external_adress_fqdn
when disable_agw
is set to true
README.md
Outdated
**2.** Add VMs or VMSS to Backend Pool: | ||
- Manually add your Virtual Machines (VMs) or Virtual Machine Scale Sets (VMSS) to the Application Gateway’s backend pool as targets. | ||
|
||
**3.** Upgrade VM Instances: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This not is still valid
README.md
Outdated
- Path-Based Routing Rule: Set up a path-based routing rule on your Application Gateway to listen to the same context path. For example, if `context_path = "/graphdb"`, the path-based rule should be `/graphdb/*`. | ||
|
||
_Note_: | ||
- You can use your External Application Gateway without the context path. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
External should be with lower case
main.tf
Outdated
web_test_geo_locations = var.web_test_geo_locations | ||
web_test_ssl_check_enabled = var.web_test_ssl_check_enabled | ||
graphdb_external_address_fqdn = var.graphdb_external_address_fqdn != null ? var.graphdb_external_address_fqdn : module.application_gateway.public_ip_address_fqdn | ||
|
||
#graphdb_external_address_fqdn = var.graphdb_external_address_fqdn != null ? var.graphdb_external_address_fqdn : module.application_gateway.public_ip_address_fqdn |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do you need the commented line ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
not anymore. Removed. ty
|
||
# App Configuration | ||
app_configuration_id = module.appconfig.app_configuration_id | ||
app_configuration_endpoint = module.appconfig.app_configuration_endpoint | ||
|
||
# GraphDB Configurations | ||
graphdb_external_address_fqdn = var.graphdb_external_address_fqdn != null ? var.graphdb_external_address_fqdn : module.application_gateway.public_ip_address_fqdn | ||
graphdb_external_address_fqdn = var.graphdb_external_address_fqdn != null ? var.graphdb_external_address_fqdn : (var.disable_agw ? null : module.application_gateway[0].public_ip_address_fqdn) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I still want to see the outputted graphdb.properties
file
@viktor-ribchev I checked and everywhere else there is no empty line between for_each and content. Should I change it for all or keep it like this and eventually remove the spaces between Dynamic and for_each? |
Check what I've commented.
|
945835c
to
ae043df
Compare
remove null from variables terraform-docs: updated markdown table Update variables.tf Added Vik's suggestion terraform-docs: updated markdown table Password default back to Null variables.tf terraform-docs: updated markdown table Update Description for tls_certificate_path terraform-docs: updated markdown table Update variables.tf terraform-docs: updated markdown table fix typo variables.tf terraform-docs: updated markdown table Added missing default for tls_certificate_path terraform-docs: updated markdown table Update GraphDB default version to 10.7.6 terraform-docs: updated markdown table Add Variables File change for testing purposes terraform-docs: updated markdown table Add the rest of the changes test Fix comments from Viktor add validations for disable_agw and fix some comments add clarity on readme and variables Add the rest of the changes test Fix comments from Viktor Formated README.md Added some extra formatting for Readme Update README.md Added Viktor's suggestions Remove Bullet from README.md add changes, fix comments terraform-docs: updated markdown table Fix README.md Comments fix comments terraform-docs: updated markdown table Update README.md Fix comments from Viktor Add Note for external_fdqn formating Add Variables File change for testing purposes terraform-docs: updated markdown table Add the rest of the changes test Fix comments from Viktor Formated README.md Added some extra formatting for Readme Update README.md Added Viktor's suggestions Fix README.md Comments fix comments terraform-docs: updated markdown table
Password default back to Null variables.tf terraform-docs: updated markdown table Added missing default for tls_certificate_path terraform-docs: updated markdown table terraform-docs: updated markdown table fix git ignore + monitoring fix comments fix formating
remove null from variables terraform-docs: updated markdown table Update variables.tf Added Vik's suggestion terraform-docs: updated markdown table Password default back to Null variables.tf terraform-docs: updated markdown table Update Description for tls_certificate_path terraform-docs: updated markdown table Update variables.tf terraform-docs: updated markdown table fix typo variables.tf terraform-docs: updated markdown table Added missing default for tls_certificate_path terraform-docs: updated markdown table Update GraphDB default version to 10.7.6 terraform-docs: updated markdown table Add Variables File change for testing purposes terraform-docs: updated markdown table Add the rest of the changes test Fix comments from Viktor add validations for disable_agw and fix some comments add clarity on readme and variables Add the rest of the changes test Fix comments from Viktor Formated README.md Added some extra formatting for Readme Update README.md Added Viktor's suggestions Remove Bullet from README.md add changes, fix comments terraform-docs: updated markdown table Fix README.md Comments fix comments terraform-docs: updated markdown table Update README.md Fix comments from Viktor Add Note for external_fdqn formating Add Variables File change for testing purposes terraform-docs: updated markdown table Add the rest of the changes test Fix comments from Viktor Formated README.md Added some extra formatting for Readme Update README.md Added Viktor's suggestions Fix README.md Comments fix comments terraform-docs: updated markdown table
Password default back to Null variables.tf terraform-docs: updated markdown table Added missing default for tls_certificate_path terraform-docs: updated markdown table terraform-docs: updated markdown table fix git ignore + monitoring fix comments fix formating
rebase
c1ba3fe
to
68e72ff
Compare
terraform-docs: updated markdown table remove null from variables terraform-docs: updated markdown table Update variables.tf Added Vik's suggestion terraform-docs: updated markdown table Password default back to Null variables.tf terraform-docs: updated markdown table Update Description for tls_certificate_path terraform-docs: updated markdown table Update variables.tf terraform-docs: updated markdown table fix typo variables.tf terraform-docs: updated markdown table Added missing default for tls_certificate_path terraform-docs: updated markdown table Update GraphDB default version to 10.7.6 terraform-docs: updated markdown table Add Variables File change for testing purposes terraform-docs: updated markdown table Add the rest of the changes test Fix comments from Viktor add validations for disable_agw and fix some comments add clarity on readme and variables Add the rest of the changes test Fix comments from Viktor Formated README.md Added some extra formatting for Readme Update README.md Added Viktor's suggestions Remove Bullet from README.md add changes, fix comments terraform-docs: updated markdown table Fix README.md Comments fix comments terraform-docs: updated markdown table Update README.md Fix comments from Viktor Add Note for external_fdqn formating Add Variables File change for testing purposes terraform-docs: updated markdown table Add the rest of the changes test Fix comments from Viktor Formated README.md Added some extra formatting for Readme Update README.md Added Viktor's suggestions Fix README.md Comments fix comments terraform-docs: updated markdown table comments fix + formating Password default back to Null variables.tf terraform-docs: updated markdown table Added missing default for tls_certificate_path terraform-docs: updated markdown table terraform-docs: updated markdown table fix git ignore + monitoring fix comments fix formating change changelog rebase add empty line
Fix documentation comments fix + formating Password default back to Null variables.tf terraform-docs: updated markdown table Added missing default for tls_certificate_path terraform-docs: updated markdown table terraform-docs: updated markdown table fix git ignore + monitoring fix comments fix formating change changelog rebase terraform-docs: updated markdown table fix comments. Add changes to changelog terraform-docs: updated markdown table remove null from variables terraform-docs: updated markdown table Update variables.tf Added Vik's suggestion terraform-docs: updated markdown table Password default back to Null variables.tf terraform-docs: updated markdown table Update Description for tls_certificate_path terraform-docs: updated markdown table Update variables.tf terraform-docs: updated markdown table fix typo variables.tf terraform-docs: updated markdown table Added missing default for tls_certificate_path terraform-docs: updated markdown table Update GraphDB default version to 10.7.6 terraform-docs: updated markdown table Add Variables File change for testing purposes terraform-docs: updated markdown table Add the rest of the changes test Fix comments from Viktor add validations for disable_agw and fix some comments add clarity on readme and variables Add the rest of the changes test Fix comments from Viktor Formated README.md Added some extra formatting for Readme Update README.md Added Viktor's suggestions Remove Bullet from README.md add changes, fix comments terraform-docs: updated markdown table Fix README.md Comments fix comments terraform-docs: updated markdown table Update README.md Fix comments from Viktor Add Note for external_fdqn formating Add Variables File change for testing purposes terraform-docs: updated markdown table Add the rest of the changes test Fix comments from Viktor Formated README.md Added some extra formatting for Readme Update README.md Added Viktor's suggestions Fix README.md Comments fix comments terraform-docs: updated markdown table comments fix + formating Password default back to Null variables.tf terraform-docs: updated markdown table Added missing default for tls_certificate_path terraform-docs: updated markdown table terraform-docs: updated markdown table fix git ignore + monitoring fix comments fix formating change changelog rebase add empty line fix documentation terraform-docs: updated markdown table Update default GraphDB version to 10.8.0 update documentation Updated default GraphDB Version 10.8.0 update documentation terraform-docs: updated markdown table terraform-docs: updated markdown table remove null from variables terraform-docs: updated markdown table Update variables.tf Added Vik's suggestion terraform-docs: updated markdown table Password default back to Null variables.tf terraform-docs: updated markdown table Update Description for tls_certificate_path terraform-docs: updated markdown table Update variables.tf terraform-docs: updated markdown table fix typo variables.tf terraform-docs: updated markdown table Added missing default for tls_certificate_path terraform-docs: updated markdown table Update GraphDB default version to 10.7.6 terraform-docs: updated markdown table Add Variables File change for testing purposes terraform-docs: updated markdown table Add the rest of the changes test Fix comments from Viktor add validations for disable_agw and fix some comments add clarity on readme and variables Add the rest of the changes test Fix comments from Viktor Formated README.md Added some extra formatting for Readme Update README.md Added Viktor's suggestions Remove Bullet from README.md add changes, fix comments terraform-docs: updated markdown table Fix README.md Comments fix comments terraform-docs: updated markdown table Update README.md Fix comments from Viktor Add Note for external_fdqn formating Add Variables File change for testing purposes terraform-docs: updated markdown table Add the rest of the changes test Fix comments from Viktor Formated README.md Added some extra formatting for Readme Update README.md Added Viktor's suggestions Fix README.md Comments fix comments terraform-docs: updated markdown table comments fix + formating Password default back to Null variables.tf terraform-docs: updated markdown table Added missing default for tls_certificate_path terraform-docs: updated markdown table terraform-docs: updated markdown table fix git ignore + monitoring fix comments fix formating Fix documentation change changelog rebase terraform-docs: updated markdown table fix comments. Add changes to changelog terraform-docs: updated markdown table remove null from variables terraform-docs: updated markdown table Update variables.tf Added Vik's suggestion terraform-docs: updated markdown table Password default back to Null variables.tf terraform-docs: updated markdown table Update Description for tls_certificate_path terraform-docs: updated markdown table Update variables.tf terraform-docs: updated markdown table fix typo variables.tf terraform-docs: updated markdown table Added missing default for tls_certificate_path terraform-docs: updated markdown table Update GraphDB default version to 10.7.6 terraform-docs: updated markdown table Add Variables File change for testing purposes terraform-docs: updated markdown table Add the rest of the changes test Fix comments from Viktor add validations for disable_agw and fix some comments add clarity on readme and variables Add the rest of the changes test Fix comments from Viktor Formated README.md Added some extra formatting for Readme Update README.md Added Viktor's suggestions Remove Bullet from README.md add changes, fix comments terraform-docs: updated markdown table Fix README.md Comments fix comments terraform-docs: updated markdown table Update README.md Fix comments from Viktor Add Note for external_fdqn formating Add Variables File change for testing purposes terraform-docs: updated markdown table Add the rest of the changes test Fix comments from Viktor Formated README.md Added some extra formatting for Readme Update README.md Added Viktor's suggestions Fix README.md Comments fix comments terraform-docs: updated markdown table comments fix + formating Password default back to Null variables.tf terraform-docs: updated markdown table Added missing default for tls_certificate_path terraform-docs: updated markdown table terraform-docs: updated markdown table fix git ignore + monitoring fix comments fix formating change changelog rebase add empty line terraform-docs: updated markdown table Fix documentation comments fix + formating Password default back to Null variables.tf terraform-docs: updated markdown table Added missing default for tls_certificate_path terraform-docs: updated markdown table terraform-docs: updated markdown table fix git ignore + monitoring fix comments fix formating change changelog rebase terraform-docs: updated markdown table fix comments. Add changes to changelog terraform-docs: updated markdown table remove null from variables terraform-docs: updated markdown table Update variables.tf Added Vik's suggestion terraform-docs: updated markdown table Password default back to Null variables.tf terraform-docs: updated markdown table Update Description for tls_certificate_path terraform-docs: updated markdown table Update variables.tf terraform-docs: updated markdown table fix typo variables.tf terraform-docs: updated markdown table Added missing default for tls_certificate_path terraform-docs: updated markdown table Update GraphDB default version to 10.7.6 terraform-docs: updated markdown table Add Variables File change for testing purposes terraform-docs: updated markdown table Add the rest of the changes test Fix comments from Viktor add validations for disable_agw and fix some comments add clarity on readme and variables Add the rest of the changes test Fix comments from Viktor Formated README.md Added some extra formatting for Readme Update README.md Added Viktor's suggestions Remove Bullet from README.md add changes, fix comments terraform-docs: updated markdown table Fix README.md Comments fix comments terraform-docs: updated markdown table Update README.md Fix comments from Viktor Add Note for external_fdqn formating Add Variables File change for testing purposes terraform-docs: updated markdown table Add the rest of the changes test Fix comments from Viktor Formated README.md Added some extra formatting for Readme Update README.md Added Viktor's suggestions Fix README.md Comments fix comments terraform-docs: updated markdown table comments fix + formating Password default back to Null variables.tf terraform-docs: updated markdown table Added missing default for tls_certificate_path terraform-docs: updated markdown table terraform-docs: updated markdown table fix git ignore + monitoring fix comments fix formating change changelog rebase add empty line fix documentation terraform-docs: updated markdown table Update default GraphDB version to 10.8.0 terraform-docs: updated markdown table Updated default GraphDB Version 10.8.0 change changelog rebase terraform-docs: updated markdown table fix comments. Add changes to changelog terraform-docs: updated markdown table remove null from variables terraform-docs: updated markdown table Update variables.tf Added Vik's suggestion terraform-docs: updated markdown table Password default back to Null variables.tf terraform-docs: updated markdown table Update Description for tls_certificate_path terraform-docs: updated markdown table Update variables.tf terraform-docs: updated markdown table fix typo variables.tf terraform-docs: updated markdown table Added missing default for tls_certificate_path terraform-docs: updated markdown table Update GraphDB default version to 10.7.6 terraform-docs: updated markdown table Add Variables File change for testing purposes terraform-docs: updated markdown table Add the rest of the changes test Fix comments from Viktor add validations for disable_agw and fix some comments add clarity on readme and variables Add the rest of the changes test Fix comments from Viktor Formated README.md Added some extra formatting for Readme Update README.md Added Viktor's suggestions Remove Bullet from README.md add changes, fix comments terraform-docs: updated markdown table Fix README.md Comments fix comments terraform-docs: updated markdown table Update README.md Fix comments from Viktor Add Note for external_fdqn formating Add Variables File change for testing purposes terraform-docs: updated markdown table Add the rest of the changes test Fix comments from Viktor Formated README.md Added some extra formatting for Readme Update README.md Added Viktor's suggestions Fix README.md Comments fix comments terraform-docs: updated markdown table comments fix + formating Password default back to Null variables.tf terraform-docs: updated markdown table Added missing default for tls_certificate_path terraform-docs: updated markdown table terraform-docs: updated markdown table fix git ignore + monitoring fix comments fix formating change changelog rebase add empty line terraform-docs: updated markdown table Fix documentation comments fix + formating Password default back to Null variables.tf terraform-docs: updated markdown table Added missing default for tls_certificate_path terraform-docs: updated markdown table terraform-docs: updated markdown table fix git ignore + monitoring fix comments fix formating change changelog rebase terraform-docs: updated markdown table fix comments. Add changes to changelog terraform-docs: updated markdown table remove null from variables terraform-docs: updated markdown table Update variables.tf Added Vik's suggestion terraform-docs: updated markdown table Password default back to Null variables.tf terraform-docs: updated markdown table Update Description for tls_certificate_path terraform-docs: updated markdown table Update variables.tf terraform-docs: updated markdown table fix typo variables.tf terraform-docs: updated markdown table Added missing default for tls_certificate_path terraform-docs: updated markdown table Update GraphDB default version to 10.7.6 terraform-docs: updated markdown table Add Variables File change for testing purposes terraform-docs: updated markdown table Add the rest of the changes test Fix comments from Viktor add validations for disable_agw and fix some comments add clarity on readme and variables Add the rest of the changes test Fix comments from Viktor Formated README.md Added some extra formatting for Readme Update README.md Added Viktor's suggestions Remove Bullet from README.md add changes, fix comments terraform-docs: updated markdown table Fix README.md Comments fix comments terraform-docs: updated markdown table Update README.md Fix comments from Viktor Add Note for external_fdqn formating Add Variables File change for testing purposes terraform-docs: updated markdown table Add the rest of the changes test Fix comments from Viktor Formated README.md Added some extra formatting for Readme Update README.md Added Viktor's suggestions Fix README.md Comments fix comments terraform-docs: updated markdown table comments fix + formating Password default back to Null variables.tf terraform-docs: updated markdown table Added missing default for tls_certificate_path terraform-docs: updated markdown table terraform-docs: updated markdown table fix git ignore + monitoring fix comments fix formating change changelog rebase add empty line fix documentation terraform-docs: updated markdown table Update default GraphDB version to 10.8.0 update documentation Updated default GraphDB Version 10.8.0 update documentation terraform-docs: updated markdown table terraform-docs: updated markdown table remove null from variables terraform-docs: updated markdown table Update variables.tf Added Vik's suggestion terraform-docs: updated markdown table Password default back to Null variables.tf terraform-docs: updated markdown table Update Description for tls_certificate_path terraform-docs: updated markdown table Update variables.tf terraform-docs: updated markdown table fix typo variables.tf terraform-docs: updated markdown table Added missing default for tls_certificate_path terraform-docs: updated markdown table Update GraphDB default version to 10.7.6 terraform-docs: updated markdown table Add Variables File change for testing purposes terraform-docs: updated markdown table Add the rest of the changes test Fix comments from Viktor add validations for disable_agw and fix some comments add clarity on readme and variables Add the rest of the changes test Fix comments from Viktor Formated README.md Added some extra formatting for Readme Update README.md Added Viktor's suggestions Remove Bullet from README.md add changes, fix comments terraform-docs: updated markdown table Fix README.md Comments fix comments terraform-docs: updated markdown table Update README.md Fix comments from Viktor Add Note for external_fdqn formating Add Variables File change for testing purposes terraform-docs: updated markdown table Add the rest of the changes test Fix comments from Viktor Formated README.md Added some extra formatting for Readme Update README.md Added Viktor's suggestions Fix README.md Comments fix comments terraform-docs: updated markdown table comments fix + formating Password default back to Null variables.tf terraform-docs: updated markdown table Added missing default for tls_certificate_path terraform-docs: updated markdown table terraform-docs: updated markdown table fix git ignore + monitoring fix comments fix formating Fix documentation change changelog rebase terraform-docs: updated markdown table fix comments. Add changes to changelog terraform-docs: updated markdown table remove null from variables terraform-docs: updated markdown table Update variables.tf Added Vik's suggestion terraform-docs: updated markdown table Password default back to Null variables.tf terraform-docs: updated markdown table Update Description for tls_certificate_path terraform-docs: updated markdown table Update variables.tf terraform-docs: updated markdown table fix typo variables.tf terraform-docs: updated markdown table Added missing default for tls_certificate_path terraform-docs: updated markdown table Update GraphDB default version to 10.7.6 terraform-docs: updated markdown table Add Variables File change for testing purposes terraform-docs: updated markdown table Add the rest of the changes test Fix comments from Viktor add validations for disable_agw and fix some comments add clarity on readme and variables Add the rest of the changes test Fix comments from Viktor Formated README.md Added some extra formatting for Readme Update README.md Added Viktor's suggestions Remove Bullet from README.md add changes, fix comments terraform-docs: updated markdown table Fix README.md Comments fix comments terraform-docs: updated markdown table Update README.md Fix comments from Viktor Add Note for external_fdqn formating Add Variables File change for testing purposes terraform-docs: updated markdown table Add the rest of the changes test Fix comments from Viktor Formated README.md Added some extra formatting for Readme Update README.md Added Viktor's suggestions Fix README.md Comments fix comments terraform-docs: updated markdown table comments fix + formating Password default back to Null variables.tf terraform-docs: updated markdown table Added missing default for tls_certificate_path terraform-docs: updated markdown table terraform-docs: updated markdown table fix git ignore + monitoring fix comments fix formating change changelog rebase add empty line terraform-docs: updated markdown table Fix documentation comments fix + formating Password default back to Null variables.tf terraform-docs: updated markdown table Added missing default for tls_certificate_path terraform-docs: updated markdown table terraform-docs: updated markdown table fix git ignore + monitoring fix comments fix formating change changelog rebase terraform-docs: updated markdown table fix comments. Add changes to changelog terraform-docs: updated markdown table remove null from variables terraform-docs: updated markdown table Update variables.tf Added Vik's suggestion terraform-docs: updated markdown table Password default back to Null variables.tf terraform-docs: updated markdown table Update Description for tls_certificate_path terraform-docs: updated markdown table Update variables.tf terraform-docs: updated markdown table fix typo variables.tf terraform-docs: updated markdown table Added missing default for tls_certificate_path terraform-docs: updated markdown table Update GraphDB default version to 10.7.6 terraform-docs: updated markdown table Add Variables File change for testing purposes terraform-docs: updated markdown table Add the rest of the changes test Fix comments from Viktor add validations for disable_agw and fix some comments add clarity on readme and variables Add the rest of the changes test Fix comments from Viktor Formated README.md Added some extra formatting for Readme Update README.md Added Viktor's suggestions Remove Bullet from README.md add changes, fix comments terraform-docs: updated markdown table Fix README.md Comments fix comments terraform-docs: updated markdown table Update README.md Fix comments from Viktor Add Note for external_fdqn formating Add Variables File change for testing purposes terraform-docs: updated markdown table Add the rest of the changes test Fix comments from Viktor Formated README.md Added some extra formatting for Readme Update README.md Added Viktor's suggestions Fix README.md Comments fix comments terraform-docs: updated markdown table comments fix + formating Password default back to Null variables.tf terraform-docs: updated markdown table Added missing default for tls_certificate_path terraform-docs: updated markdown table terraform-docs: updated markdown table fix git ignore + monitoring fix comments fix formating change changelog rebase add empty line fix documentation terraform-docs: updated markdown table add changes in changelog
424288a
to
0010028
Compare
Description
Added the option to start the cluster without Application Gateway
Related Issues
GDB-10856
Changes
New branch since the old one kinda broke
Screenshots (if applicable)
Checklist