Skip to content

[BUG]: Provider produced inconsistent result after apply (v6.7.3)Β #2843

@avivamei

Description

@avivamei

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

Metadata

Metadata

Assignees

Labels

Status: TriageThis is being looked at and prioritizedType: BugSomething isn't working as documented

Type

No type

Projects

Status

Done

Relationships

None yet

Development

No branches or pull requests

Issue actions