Skip to content

Commit

Permalink
Merge pull request #3 from ConseilsTI/v0.0.3
Browse files Browse the repository at this point in the history
v0.0.3
  • Loading branch information
benyboy84 authored Jan 26, 2024
2 parents 6a60f27 + 26facfe commit 5edffd7
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions locals.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ locals {
# This local is used to define the organization name.
tfc_organization_name = "ConseilsTI"

# This local is used to define the GitHub App installation ID.
github_app_installation_id = "ws-E9Js5UE71KFm2JoX"

# This local is used to define GitHub organization name.
git_organization_name = "ConseilsTI"

Expand Down Expand Up @@ -173,7 +176,7 @@ locals {
# }
# vcs_repo = {
# identifier = "GitHub repository"
# github_app_installation_id = "GitHub app installation ID"
# github_app_installation_id = local.github_app_installation_id
# }
# }
# }
Expand Down Expand Up @@ -227,7 +230,7 @@ locals {
}
vcs_repo = {
identifier = "${local.git_organization_name}/TerraformCloud-ModulesRegistry"
github_app_installation_id = data.hcp_vault_secrets_secret.this["github_app_installation_id"].secret_value
github_app_installation_id = local.github_app_installation_id
}
}
"TerraformCloud-Policies" = {
Expand Down Expand Up @@ -262,7 +265,7 @@ locals {
}
vcs_repo = {
identifier = "${local.git_organization_name}/TerraformCloud-Policies"
github_app_installation_id = data.hcp_vault_secrets_secret.this["github_app_installation_id"].secret_value
github_app_installation_id = local.github_app_installation_id
}
}
}
Expand Down

0 comments on commit 5edffd7

Please sign in to comment.