Skip to content

Commit

Permalink
feat: add registry name to outputs (#8)
Browse files Browse the repository at this point in the history
* feat: add registry name to outputs

* chore: update terraform fmt
  • Loading branch information
jonmorehouse authored Apr 8, 2024
1 parent 4c31b85 commit 30f3dca
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ output "account" {
output "acr" {
value = {
id = azurerm_container_registry.acr.id
name = azurerm_container_registry.acr.name
login_server = azurerm_container_registry.acr.login_server
token_id = azurerm_container_registry_token.runner.id
password = nonsensitive(azurerm_container_registry_token_password.runner.password1[0].value)
Expand Down
6 changes: 3 additions & 3 deletions terraform.tfvars
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
internal_root_domain = "foo.nuon.run"
public_root_domain = "public.nuon.run"
nuon_id = "plzxletmtwkqzizk"
location = "eastus"
public_root_domain = "public.nuon.run"
nuon_id = "plzxletmtwkqzizk"
location = "eastus"
tags = {
"managed_by" = "nuon"
}

0 comments on commit 30f3dca

Please sign in to comment.