-
Notifications
You must be signed in to change notification settings - Fork 159
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add cran support * linux vm config * linux vm config edit * Base type r * fix vm scripts * windows powershell edit * ps file content config * corrected naming for allowed workspace fqdns * edit to nexus firewall config * nsg fix and firewall config * moving firewall addition to workspace so that the rule is added on creation * fix references * revert base and add to nexus * alter output config * add acr parameter * source address to array missing output * porter version * fixing final issues * Final windows config changes * versions * remove mgmt_acr and certain CRLs * terraform configuration * TFlint fixes * outputs.tf Co-authored-by: Jaimie Withers <jaimie.withers@bdi.ox.ac.uk> Co-authored-by: David Moore <35696285+damoodamoo@users.noreply.github.com>
- Loading branch information
1 parent
32533a6
commit 8b47280
Showing
17 changed files
with
285 additions
and
50 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
32 changes: 32 additions & 0 deletions
32
templates/shared_services/sonatype-nexus-vm/scripts/nexus_repos_config/cran_proxy_conf.json
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 |
---|---|---|
@@ -0,0 +1,32 @@ | ||
{ | ||
"name": "r-proxy", | ||
"online": true, | ||
"storage": { | ||
"blobStoreName": "default", | ||
"strictContentTypeValidation": true, | ||
"write_policy": "ALLOW" | ||
}, | ||
"proxy": { | ||
"remoteUrl": "https://cran.r-project.org/", | ||
"contentMaxAge": 1440, | ||
"metadataMaxAge": 1440 | ||
}, | ||
"negativeCache": { | ||
"enabled": true, | ||
"timeToLive": 1440 | ||
}, | ||
"httpClient": { | ||
"blocked": false, | ||
"autoBlock": false, | ||
"connection": { | ||
"retries": 0, | ||
"userAgentSuffix": "string", | ||
"timeout": 60, | ||
"enableCircularRedirects": false, | ||
"enableCookies": false, | ||
"useTrustStore": false | ||
} | ||
}, | ||
"baseType": "r", | ||
"repoType": "proxy" | ||
} |
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
22 changes: 0 additions & 22 deletions
22
templates/shared_services/sonatype-nexus-vm/terraform/firewall.tf
This file was deleted.
Oops, something went wrong.
12 changes: 7 additions & 5 deletions
12
templates/shared_services/sonatype-nexus-vm/terraform/locals.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
3 changes: 0 additions & 3 deletions
3
templates/shared_services/sonatype-nexus-vm/terraform/output.tf
This file was deleted.
Oops, something went wrong.
16 changes: 16 additions & 0 deletions
16
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
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) | ||
} | ||
|
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
2 changes: 1 addition & 1 deletion
2
templates/workspace_services/guacamole/user_resources/guacamole-azure-linuxvm/porter.yaml
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
Oops, something went wrong.