-
Notifications
You must be signed in to change notification settings - Fork 883
Open
Labels
Status: TriageThis is being looked at and prioritizedThis is being looked at and prioritizedType: BugSomething isn't working as documentedSomething isn't working as documented
Description
Expected Behavior
Provider should apply successfully
Actual Behavior
Provider fails during apply with error:
Provider produced inconsistent result after apply
When applying changes to , provider "provider["registry.terraform.io/integrations/github"]" produced an unexpected new value: Root object was present, but now absent.
This is a bug in the provider, which should be reported in the provider's own issue tracker.
Terraform Version
Terraform v1.13.4
on linux_amd64
- provider registry.terraform.io/integrations/github v6.7.3
Affected Resource(s)
github_actions_secret
Terraform Configuration Files
terraform {
required_providers {
github = {
source = "integrations/github"
version = "~> 6.7"
}
}
}
resource "github_actions_secret" "secrets" {
for_each = var.action_secrets
repository = github_repository.repo.name
secret_name = each.key
plaintext_value = each.value
}
Steps to Reproduce
- Use GitHub provider version 6.7.3
- Define a github_actions_secret resource in your configuration
- Run terraform init
- Run terraform plan
Debug Output
Panic Output
Code of Conduct
- I agree to follow this project's Code of Conduct
dominictarro, rohitpaulk, frabar, tknisch, nomaster and 15 more
Metadata
Metadata
Assignees
Labels
Status: TriageThis is being looked at and prioritizedThis is being looked at and prioritizedType: BugSomething isn't working as documentedSomething isn't working as documented
Type
Projects
Status
Done