-
Notifications
You must be signed in to change notification settings - Fork 149
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor Nexus bundle to use KeyVault VM Extension (#3453)
* update firewall * use keyvault vm extension to get nexus ssl * changelog * version
- Loading branch information
1 parent
617d5bf
commit da061f8
Showing
13 changed files
with
118 additions
and
99 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,6 @@ | |
"type": "object", | ||
"required": [ | ||
"name", | ||
"action", | ||
"rules" | ||
], | ||
"properties": { | ||
|
28 changes: 14 additions & 14 deletions
28
templates/shared_services/firewall/terraform/.terraform.lock.hcl
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
59 changes: 30 additions & 29 deletions
59
templates/shared_services/sonatype-nexus-vm/terraform/.terraform.lock.hcl
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 3 additions & 8 deletions
11
templates/shared_services/sonatype-nexus-vm/terraform/outputs.tf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,11 @@ | ||
output "nexus_fqdn" { | ||
value = azurerm_private_dns_a_record.nexus_vm.fqdn | ||
} | ||
|
||
output "nexus_allowed_fqdns_list" { | ||
value = jsonencode(local.nexus_allowed_fqdns_list) | ||
} | ||
|
||
output "shared_address_prefixes" { | ||
value = jsonencode(data.azurerm_subnet.shared.address_prefixes) | ||
} | ||
|
||
output "workspace_vm_allowed_fqdns_list" { | ||
value = jsonencode(local.workspace_vm_allowed_fqdns_list) | ||
} | ||
|
||
output "private_ip_addresses" { | ||
value = jsonencode(azurerm_network_interface.nexus.private_ip_addresses) | ||
} |
Oops, something went wrong.