Description
Terraform Version
Terraform v1.5.6
Terraform Configuration Files
terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "3.71.0"
}
}
backend "azurerm" {}
}
provider "azurerm" {
features {}
}
data "azurerm_resource_group" "rg" {
name = "rg-example-1"
}
Debug Output
https://gist.github.com/delikvent/caf426f7c34553adce018b25b314c6c8
Expected Behavior
terraform init stage within github workflow should fail if no matching federated identity record is found for presented assertion.
Actual Behavior
terraform init stage within github workflow hangs (seemingly forever).
Steps to Reproduce
terraform init
-backend-config=subscription_id=REDACTED
-backend-config=resource_group_name=REDACTED
-backend-config=storage_account_name=REDACTED
-backend-config=container_name=REDACTED
-backend-config=key=REDACTED
-input=false
Additional Context
shell:
bash
environment_variables:
ARM_USE_OIDC=TRUE
ARM_CLIENT_ID=REDACTED
ARM_TENANT_ID=REDACTED
github_workflow_permissions:
id-token: write
contents: read
additional_info:
When performing authentication via "az login" instead of "terraform" core binary we can see the expected error message:
<<- ERROR MESSAGE START ->>
AADSTS70021: No matching federated identity record found for presented assertion.
Assertion Issuer: "https://token.actions.githubusercontent.com"
Assertion Subject: REDACTED
Assertion Audience: "api://AzureADTokenExchange"
<<- ERROR MESSAGE END ->>
References
No response
Activity
crw commentedon Sep 7, 2023
Thanks for this bug report!
If you are viewing this issue and would like to indicate your interest, please use the 👍 reaction on the issue description to upvote this issue. We also welcome additional use case descriptions. Thanks again!
kgibson-insight commentedon Nov 2, 2023
I'm having the same issue on v1.6.3
here is trace
ybensoussan commentedon Dec 13, 2023
Found this issue, the setup is a bit finicky. What worked for me is the following:
in the backend config you need:
Don't set ANY ARM_** environment variables (The only one I have is ARM_TENANT_ID, but this can also be included in the backend file as above.
With this the backend seems to initialize fine trough OIDC now.
And subsequent provider blocks in the plan can be used with different client_id sourced from variables or ENV variables.
Which looks like this in GH actions and the provider config: