Skip to content

Commit

Permalink
uppercase in owner name
Browse files Browse the repository at this point in the history
  • Loading branch information
tjololo committed Sep 26, 2024
1 parent c02d192 commit 1708fde
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions infrastructure/products/entra.tf
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ data "azuread_service_principal" "msgraph" {

# https://registry.terraform.io/providers/hashicorp/azuread/latest/docs/resources/application
resource "azuread_application" "administrator" {
display_name = "GitHub: ${lower(local.configuration.admin.github.owner)}/${lower(local.configuration.admin.github.repository)} - Admin"
display_name = "GitHub: ${local.configuration.admin.github.owner}/${lower(local.configuration.admin.github.repository)} - Admin"
# prevent_duplicate_names = true
}

# https://registry.terraform.io/providers/hashicorp/azuread/latest/docs/resources/application
resource "azuread_application" "reader" {
display_name = "GitHub: ${lower(local.configuration.admin.github.owner)}/${lower(local.configuration.admin.github.repository)} - Reader"
display_name = "GitHub: ${local.configuration.admin.github.owner}/${lower(local.configuration.admin.github.repository)} - Reader"
# prevent_duplicate_names = true
}

Expand Down
2 changes: 1 addition & 1 deletion products.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
admin:
github:
owner: altinn
owner: Altinn
repository: altinn-platform

products:
Expand Down

0 comments on commit 1708fde

Please sign in to comment.