Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Bug]: Member Length error when deploying codepipeline #41023

Open
65156 opened this issue Jan 21, 2025 · 2 comments
Open

[Bug]: Member Length error when deploying codepipeline #41023

65156 opened this issue Jan 21, 2025 · 2 comments
Labels
bug Addresses a defect in current functionality. needs-triage Waiting for first response or review from a maintainer. service/codepipeline Issues and PRs that pertain to the codepipeline service. waiting-response Maintainers are waiting on response from community or contributor.

Comments

@65156
Copy link
Contributor

65156 commented Jan 21, 2025

Terraform Core Version

1.5.7

AWS Provider Version

5.4.0

Affected Resource(s)

aws_codepipeline

Expected Behavior

The intention is to deploy a 4 stage codepipeline with 2 of these stages each comprising 3 parallel actions and 1 final action execution.

Actual Behavior

recieved strange length error messages.

Relevant Error/Panic Output Snippet

aws_codepipeline.infra_pipeline["pipeline"]: Creating...
╷
│ Error: creating CodePipeline (isp-xxxxxx-cicd-sss-pipeline-pr): ValidationException: 8 validation errors detected: Value at 'pipeline.stages.2.member.actions.1.member.configuration' failed to satisfy constraint: Map value must satisfy constraint: [Member must have length less than or equal to 50000, Member must have length greater than or equal to 1]; Value at 'pipeline.stages.2.member.actions.2.member.configuration' failed to satisfy constraint: Map value must satisfy constraint: [Member must have length less than or equal to 50000, Member must have length greater than or equal to 1]; Value at 'pipeline.stages.2.member.actions.3.member.configuration' failed to satisfy constraint: Map value must satisfy constraint: [Member must have length less than or equal to 50000, Member must have length greater than or equal to 1]; Value at 'pipeline.stages.2.member.actions.4.member.configuration' failed to satisfy constraint: Map value must satisfy constraint: [Member must have length less than or equal to 50000, Member must have length greater than or equal to 1]; Value at 'pipeline.stages.4.member.actions.1.member.configuration' failed to satisfy constraint: Map value must satisfy constraint: [Member must have length less than or equal to 50000, Member must have length greater than or equal to 1]; Value at 'pipeline.stages.4.member.actions.2.member.configuration' failed to satisfy constraint: Map value must satisfy constraint: [Member must have length less than or equal to 50000, Member must have length greater than or equal to 1]; Value at 'pipeline.stages.4.member.actions.3.member.configuration' failed to satisfy constraint: Map value must satisfy constraint: [Member must have length less than or equal to 50000, Member must have length greater than or equal to 1]; Value at 'pipeline.stages.4.member.actions.4.member.configuration' failed to satisfy constraint: Map value must satisfy constraint: [Member must have length less than or equal to 50000, Member must have length greater than or equal to 1]

Terraform Configuration Files

I wont post the configuration files here because we use yamls and a lot of orchestration for locals, they will be somewhat useless, however this is the apply approval confirmation output.

Terraform will perform the following actions:

  # aws_codepipeline.infra_pipeline["pipeline"] will be created
  + resource "aws_codepipeline" "infra_pipeline" {
      + arn      = (known after apply)
      + id       = (known after apply)
      + name     = "isp-xxxxxx-cicd-sss-pipeline-pr"
      + role_arn = "arn:aws:iam::000000000:role/isp-xxxxx-cicd-sss-cp-svc-role-pr"
      + tags_all = (known after apply)

      + artifact_store {
          + location = "isp-xxxxx-cicd-sss-cp-bucket-pr"
          + region   = (known after apply)
          + type     = "S3"
        }

      + stage {
          + name = "source"

          + action {
              + category         = "Source"
              + configuration    = {
                  + "BranchName"           = "master"
                  + "ConnectionArn"        = "arn:aws:codestar-connections:us-east-2:00000000:connection/1b87e53e-0378-4af1-a34b-xxxxxxxx"
                  + "DetectChanges"        = "true"
                  + "FullRepositoryId"     = "Platform-Engineering-Services/iac-pes-isp-wld-pes-network-us-east-2-pr"
                  + "OutputArtifactFormat" = "CODE_ZIP"
                }
              + name             = "source"
              + namespace        = "SOURCE"
              + output_artifacts = [
                  + "infra-provisioning",
                ]
              + owner            = "AWS"
              + provider         = "CodeStarSourceConnection"
              + region           = (known after apply)
              + run_order        = 1
              + version          = "1"
            }
        }
      + stage {
          + name = "tf_plan"

          + action {
              + category         = "Build"
              + configuration    = {
                  + "ProjectName" = ""
                }
              + input_artifacts  = [
                  + "infra-provisioning",
                ]
              + name             = "plan0"
              + namespace        = "PLAN"
              + output_artifacts = [
                  + "plan0",
                ]
              + owner            = "AWS"
              + provider         = "CodeBuild"
              + region           = (known after apply)
              + run_order        = 2
              + version          = "1"
            }
          + action {
              + category         = "Build"
              + configuration    = {
                  + "ProjectName" = ""
                }
              + input_artifacts  = [
                  + "infra-provisioning",
                ]
              + name             = "plan1a"
              + namespace        = "PLAN"
              + output_artifacts = [
                  + "plan1a",
                ]
              + owner            = "AWS"
              + provider         = "CodeBuild"
              + region           = (known after apply)
              + run_order        = 1
              + version          = "1"
            }
          + action {
              + category         = "Build"
              + configuration    = {
                  + "ProjectName" = ""
                }
              + input_artifacts  = [
                  + "infra-provisioning",
                ]
              + name             = "plan1b"
              + namespace        = "PLAN"
              + output_artifacts = [
                  + "plan1b",
                ]
              + owner            = "AWS"
              + provider         = "CodeBuild"
              + region           = (known after apply)
              + run_order        = 1
              + version          = "1"
            }
          + action {
              + category         = "Build"
              + configuration    = {
                  + "ProjectName" = ""
                }
              + input_artifacts  = [
                  + "infra-provisioning",
                ]
              + name             = "plan2a"
              + namespace        = "PLAN"
              + output_artifacts = [
                  + "plan2a",
                ]
              + owner            = "AWS"
              + provider         = "CodeBuild"
              + region           = (known after apply)
              + run_order        = 1
              + version          = "1"
            }
        }
      + stage {
          + name = "approval"

          + action {
              + category      = "Approval"
              + configuration = {
                  + "CustomData"         = "Please review and approve the terraform plan"
                  + "ExternalEntityLink" = "#{PLAN.review_link}"
                  + "NotificationArn"    = "arn:aws:sns:us-east-1:000000000:isp-xxxxxx-cicd-sss-cp-sns-topic-pr"
                }
              + name          = "approval"
              + namespace     = "APPROVAL"
              + owner         = "AWS"
              + provider      = "Manual"
              + region        = (known after apply)
              + run_order     = 3
              + version       = "1"
            }
        }
      + stage {
          + name = "tf_apply"

          + action {
              + category         = "Build"
              + configuration    = {
                  + "ProjectName" = ""
                }
              + input_artifacts  = [
                  + "infra-provisioning",
                ]
              + name             = "apply0"
              + namespace        = "APPLY"
              + output_artifacts = [
                  + "apply0",
                ]
              + owner            = "AWS"
              + provider         = "CodeBuild"
              + region           = (known after apply)
              + run_order        = 5
              + version          = "1"
            }
          + action {
              + category         = "Build"
              + configuration    = {
                  + "ProjectName" = ""
                }
              + input_artifacts  = [
                  + "infra-provisioning",
                ]
              + name             = "apply1a"
              + namespace        = "APPLY"
              + output_artifacts = [
                  + "apply1a",
                ]
              + owner            = "AWS"
              + provider         = "CodeBuild"
              + region           = (known after apply)
              + run_order        = 4
              + version          = "1"
            }
          + action {
              + category         = "Build"
              + configuration    = {
                  + "ProjectName" = ""
                }
              + input_artifacts  = [
                  + "infra-provisioning",
                ]
              + name             = "apply1b"
              + namespace        = "APPLY"
              + output_artifacts = [
                  + "apply1b",
                ]
              + owner            = "AWS"
              + provider         = "CodeBuild"
              + region           = (known after apply)
              + run_order        = 4
              + version          = "1"
            }
          + action {
              + category         = "Build"
              + configuration    = {
                  + "ProjectName" = ""
                }
              + input_artifacts  = [
                  + "infra-provisioning",
                ]
              + name             = "apply2a"
              + namespace        = "APPLY"
              + output_artifacts = [
                  + "apply2a",
                ]
              + owner            = "AWS"
              + provider         = "CodeBuild"
              + region           = (known after apply)
              + run_order        = 4
              + version          = "1"
            }
        }
    }

Plan: 1 to add, 0 to change, 0 to destroy.

Steps to Reproduce

run terraform apply

Debug Output

aws_codepipeline.infra_pipeline["pipeline"]: Creating...
2025-01-21T15:42:05.607-0600 [INFO]  Starting apply for aws_codepipeline.infra_pipeline["pipeline"]
2025-01-21T15:42:05.635-0600 [DEBUG] aws_codepipeline.infra_pipeline["pipeline"]: applying the planned Create change
2025-01-21T15:42:05.636-0600 [DEBUG] provider.terraform-provider-aws_v5.4.0_x5: [DEBUG] setting computed for "tags_all" from ComputedKeys
2025-01-21T15:42:05.638-0600 [DEBUG] provider.terraform-provider-aws_v5.4.0_x5: [DEBUG] Waiting for state to become: [success]
2025-01-21T15:42:05.638-0600 [DEBUG] provider.terraform-provider-aws_v5.4.0_x5: HTTP Request Sent: @module=aws http.request.header.authorization="AWS4-HMAC-SHA256 Credential=AKIA************YFX7/20250121/us-east-1/codepipeline/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date;x-amz-target, Signature=*****" tf_req_id=0be88b39-9729-5e06-6cbf-2f8933375040 tf_resource_type=aws_codepipeline aws.operation=CreatePipeline aws.sdk=aws-sdk-go tf_mux_provider=*schema.GRPCProviderServer aws.service=CodePipeline http.flavor=1.1 http.method=POST http.request.header.x_amz_target=CodePipeline_20150709.CreatePipeline net.peer.name=codepipeline.us-east-1.amazonaws.com http.request.header.x_amz_date=20250121T214205Z http.request_content_length=3296 http.url=https://codepipeline.us-east-1.amazonaws.com/ @caller=github.com/hashicorp/aws-sdk-go-base/v2/awsv1shim/[email protected]/logger.go:96 aws.region=us-east-1 http.request.body="{"pipeline":{"artifactStore":{"location":"isp-xxxxxx-cicd-sss-cp-bucket-pr","type":"S3"},"name":"isp-xxxxxx-cicd-sss-pipeline-pr","roleArn":"arn:aws:iam::0000000:role/isp-xxxxx-cicd-sss-cp-svc-role-pr","stages":[{"actions":[{"actionTypeId":{"category":"Source","owner":"AWS","provider":"CodeStarSourceConnection","version":"1"},"configuration":{"BranchName":"master","ConnectionArn":"arn:aws:codestar-connections:us-east-2:00000000:connection/1b87e53e-0378-4af1-a34b-e12205ad67c6","DetectChanges":"true","FullRepositoryId":"Platform-Engineering-Services/iac-pes-isp-wld-pes-network-us-east-2-pr","OutputArtifactFormat":"CODE_ZIP"},"name":"source","namespace":"SOURCE","outputArtifacts":[{"name":"infra-provisioning"}],"runOrder":1}],"name":"source"},{"actions":[{"actionTypeId":{"category":"Build","owner":"AWS","provider":"CodeBuild","version":"1"},"configuration":{"ProjectName":""},"inputArtifacts":[{"name":"infra-provisioning"}],"name":"plan0","namespace":"PLAN","outputArtifacts":[{"name":"plan0"}],"runOrder":2},{"actionTypeId":{"category":"Build","owner":"AWS","provider":"CodeBuild","version":"1"},"configuration":{"ProjectName":""},"inputArtifacts":[{"name":"infra-provisioning"}],"name":"plan1a","namespace":"PLAN","outputArtifacts":[{"name":"plan1a"}],"runOrder":1},{"actionTypeId":{"category":"Build","owner":"AWS","provider":"CodeBuild","version":"1"},"configuration":{"ProjectName":""},"inputArtifacts":[{"name":"infra-provisioning"}],"name":"plan1b","namespace":"PLAN","outputArtifacts":[{"name":"plan1b"}],"runOrder":1},{"actionTypeId":{"category":"Build","owner":"AWS","provider":"CodeBuild","version":"1"},"configuration":{"ProjectName":""},"inputArtifacts":[{"name":"infra-provisioning"}],"name":"plan2a","namespace":"PLAN","outputArtifacts":[{"name":"plan2a"}],"runOrder":1}],"name":"tf_plan"},{"actions":[{"actionTypeId":{"category":"Approval","owner":"AWS","provider":"Manual","version":"1"},"configuration":{"CustomData":"Please review and approve the terraform plan","ExternalEntityLink":"#{PLAN.review_link}","NotificationArn":"arn:aws:sns:us-east-1:0000000:isp-xxxxxx-cicd-sss-cp-sns-topic-pr"},"name":"approval","namespace":"APPROVAL","runOrder":3}],"name":"approval"},{"actions":[{"actionTypeId":{"category":"Build","owner":"AWS","provider":"CodeBuild","version":"1"},"configuration":{"ProjectName":""},"inputArtifacts":[{"name":"infra-provisioning"}],"name":"apply0","namespace":"APPLY","outputArtifacts":[{"name":"apply0"}],"runOrder":5},{"actionTypeId":{"category":"Build","owner":"AWS","provider":"CodeBuild","version":"1"},"configuration":{"ProjectName":""},"inputArtifacts":[{"name":"infra-provisioning"}],"name":"apply1a","namespace":"APPLY","outputArtifacts":[{"name":"apply1a"}],"runOrder":4},{"actionTypeId":{"category":"Build","owner":"AWS","provider":"CodeBuild","version":"1"},"configuration":{"ProjectName":""},"inputArtifacts":[{"name":"infra-provisioning"}],"name":"apply1b","namespace":"APPLY","outputArtifacts":[{"name":"apply1b"}],"runOrder":4},{"actionTypeId":{"category":"Build","owner":"AWS","provider":"CodeBuild","version":"1"},"configuration":{"ProjectName":""},"inputArtifacts":[{"name":"infra-provisioning"}],"name":"apply2a","namespace":"APPLY","outputArtifacts":[{"name":"apply2a"}],"runOrder":4}],"name":"tf_apply"}]}}
[truncated...]" http.request.header.content_type=application/x-amz-json-1.1 http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.5.7 (+https://www.terraform.io) terraform-provider-aws/5.4.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go/1.44.282 (go1.19.9; darwin; arm64)" tf_provider_addr=registry.terraform.io/hashicorp/aws tf_rpc=ApplyResourceChange timestamp=2025-01-21T15:42:05.638-0600
2025-01-21T15:42:06.245-0600 [DEBUG] provider.terraform-provider-aws_v5.4.0_x5: HTTP Response Received: tf_req_id=0be88b39-9729-5e06-6cbf-2f8933375040 tf_resource_type=aws_codepipeline tf_provider_addr=registry.terraform.io/hashicorp/aws http.response.header.connection=keep-alive http.response.header.date="Tue, 21 Jan 2025 21:42:06 GMT" tf_mux_provider=*schema.GRPCProviderServer @module=aws aws.region=us-east-1 http.duration=606 http.response.header.content_type=application/x-amz-json-1.1 http.response_content_length=1985 tf_rpc=ApplyResourceChange @caller=github.com/hashicorp/aws-sdk-go-base/v2/awsv1shim/[email protected]/logger.go:144 aws.sdk=aws-sdk-go http.response.header.x_amzn_requestid=98f8cd11-3693-4772-9d80-62b1442ae063 http.status_code=400 aws.operation=CreatePipeline aws.service=CodePipeline http.response.body="{"__type":"ValidationException","message":"8 validation errors detected: Value at 'pipeline.stages.2.member.actions.1.member.configuration' failed to satisfy constraint: Map value must satisfy constraint: [Member must have length less than or equal to 50000, Member must have length greater than or equal to 1]; Value at 'pipeline.stages.2.member.actions.2.member.configuration' failed to satisfy constraint: Map value must satisfy constraint: [Member must have length less than or equal to 50000, Member must have length greater than or equal to 1]; Value at 'pipeline.stages.2.member.actions.3.member.configuration' failed to satisfy constraint: Map value must satisfy constraint: [Member must have length less than or equal to 50000, Member must have length greater than or equal to 1]; Value at 'pipeline.stages.2.member.actions.4.member.configuration' failed to satisfy constraint: Map value must satisfy constraint: [Member must have length less than or equal to 50000, Member must have length greater than or equal to 1]; Value at 'pipeline.stages.4.member.actions.1.member.configuration' failed to satisfy constraint: Map value must satisfy constraint: [Member must have length less than or equal to 50000, Member must have length greater than or equal to 1]; Value at 'pipeline.stages.4.member.actions.2.member.configuration' failed to satisfy constraint: Map value must satisfy constraint: [Member must have length less than or equal to 50000, Member must have length greater than or equal to 1]; Value at 'pipeline.stages.4.member.actions.3.member.configuration' failed to satisfy constraint: Map value must satisfy constraint: [Member must have length less than or equal to 50000, Member must have length greater than or equal to 1]; Value at 'pipeline.stages.4.member.actions.4.member.configuration' failed to satisfy constraint: Map value must satisfy constraint: [Member must have length less than or equal to 50000, Member must have length greater than or equal to 1]"}
" timestamp=2025-01-21T15:42:06.245-0600
2025-01-21T15:42:06.246-0600 [ERROR] provider.terraform-provider-aws_v5.4.0_x5: Response contains error diagnostic: tf_resource_type=aws_codepipeline @module=sdk.proto diagnostic_detail= diagnostic_summary="creating CodePipeline (isp-xxxxxx-cicd-sss-pipeline-pr): ValidationException: 8 validation errors detected: Value at 'pipeline.stages.2.member.actions.1.member.configuration' failed to satisfy constraint: Map value must satisfy constraint: [Member must have length less than or equal to 50000, Member must have length greater than or equal to 1]; Value at 'pipeline.stages.2.member.actions.2.member.configuration' failed to satisfy constraint: Map value must satisfy constraint: [Member must have length less than or equal to 50000, Member must have length greater than or equal to 1]; Value at 'pipeline.stages.2.member.actions.3.member.configuration' failed to satisfy constraint: Map value must satisfy constraint: [Member must have length less than or equal to 50000, Member must have length greater than or equal to 1]; Value at 'pipeline.stages.2.member.actions.4.member.configuration' failed to satisfy constraint: Map value must satisfy constraint: [Member must have length less than or equal to 50000, Member must have length greater than or equal to 1]; Value at 'pipeline.stages.4.member.actions.1.member.configuration' failed to satisfy constraint: Map value must satisfy constraint: [Member must have length less than or equal to 50000, Member must have length greater than or equal to 1]; Value at 'pipeline.stages.4.member.actions.2.member.configuration' failed to satisfy constraint: Map value must satisfy constraint: [Member must have length less than or equal to 50000, Member must have length greater than or equal to 1]; Value at 'pipeline.stages.4.member.actions.3.member.configuration' failed to satisfy constraint: Map value must satisfy constraint: [Member must have length less than or equal to 50000, Member must have length greater than or equal to 1]; Value at 'pipeline.stages.4.member.actions.4.member.configuration' failed to satisfy constraint: Map value must satisfy constraint: [Member must have length less than or equal to 50000, Member must have length greater than or equal to 1]" tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=0be88b39-9729-5e06-6cbf-2f8933375040 @caller=github.com/hashicorp/[email protected]/tfprotov5/internal/diag/diagnostics.go:55 diagnostic_severity=ERROR tf_proto_version=5.3 tf_rpc=ApplyResourceChange timestamp=2025-01-21T15:42:06.245-0600
2025-01-21T15:42:06.268-0600 [DEBUG] State storage *statemgr.Filesystem declined to persist a state snapshot
2025-01-21T15:42:06.268-0600 [ERROR] vertex "aws_codepipeline.infra_pipeline[\"pipeline\"]" error: creating CodePipeline (isp-xxxxxx-cicd-sss-pipeline-pr): ValidationException: 8 validation errors detected: Value at 'pipeline.stages.2.member.actions.1.member.configuration' failed to satisfy constraint: Map value must satisfy constraint: [Member must have length less than or equal to 50000, Member must have length greater than or equal to 1]; Value at 'pipeline.stages.2.member.actions.2.member.configuration' failed to satisfy constraint: Map value must satisfy constraint: [Member must have length less than or equal to 50000, Member must have length greater than or equal to 1]; Value at 'pipeline.stages.2.member.actions.3.member.configuration' failed to satisfy constraint: Map value must satisfy constraint: [Member must have length less than or equal to 50000, Member must have length greater than or equal to 1]; Value at 'pipeline.stages.2.member.actions.4.member.configuration' failed to satisfy constraint: Map value must satisfy constraint: [Member must have length less than or equal to 50000, Member must have length greater than or equal to 1]; Value at 'pipeline.stages.4.member.actions.1.member.configuration' failed to satisfy constraint: Map value must satisfy constraint: [Member must have length less than or equal to 50000, Member must have length greater than or equal to 1]; Value at 'pipeline.stages.4.member.actions.2.member.configuration' failed to satisfy constraint: Map value must satisfy constraint: [Member must have length less than or equal to 50000, Member must have length greater than or equal to 1]; Value at 'pipeline.stages.4.member.actions.3.member.configuration' failed to satisfy constraint: Map value must satisfy constraint: [Member must have length less than or equal to 50000, Member must have length greater than or equal to 1]; Value at 'pipeline.stages.4.member.actions.4.member.configuration' failed to satisfy constraint: Map value must satisfy constraint: [Member must have length less than or equal to 50000, Member must have length greater than or equal to 1]
╷
│ Error: creating CodePipeline (isp-xxxxx-cicd-sss-pipeline-pr): ValidationException: 8 validation errors detected: Value at 'pipeline.stages.2.member.actions.1.member.configuration' failed to satisfy constraint: Map value must satisfy constraint: [Member must have length less than or equal to 50000, Member must have length greater than or equal to 1]; Value at 'pipeline.stages.2.member.actions.2.member.configuration' failed to satisfy constraint: Map value must satisfy constraint: [Member must have length less than or equal to 50000, Member must have length greater than or equal to 1]; Value at 'pipeline.stages.2.member.actions.3.member.configuration' failed to satisfy constraint: Map value must satisfy constraint: [Member must have length less than or equal to 50000, Member must have length greater than or equal to 1]; Value at 'pipeline.stages.2.member.actions.4.member.configuration' failed to satisfy constraint: Map value must satisfy constraint: [Member must have length less than or equal to 50000, Member must have length greater than or equal to 1]; Value at 'pipeline.stages.4.member.actions.1.member.configuration' failed to satisfy constraint: Map value must satisfy constraint: [Member must have length less than or equal to 50000, Member must have length greater than or equal to 1]; Value at 'pipeline.stages.4.member.actions.2.member.configuration' failed to satisfy constraint: Map value must satisfy constraint: [Member must have length less than or equal to 50000, Member must have length greater than or equal to 1]; Value at 'pipeline.stages.4.member.actions.3.member.configuration' failed to satisfy constraint: Map value must satisfy constraint: [Member must have length less than or equal to 50000, Member must have length greater than or equal to 1]; Value at 'pipeline.stages.4.member.actions.4.member.configuration' failed to satisfy constraint: Map value must satisfy constraint: [Member must have length less than or equal to 50000, Member must have length greater than or equal to 1]
│ 
│   with aws_codepipeline.infra_pipeline["pipeline"],
│   on main.tf line 8, in resource "aws_codepipeline" "infra_pipeline":
│    8: resource "aws_codepipeline" "infra_pipeline" {
│ 
╵
2025-01-21T15:42:06.290-0600 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF"
2025-01-21T15:42:06.299-0600 [DEBUG] provider: plugin process exited: path=.terraform/providers/registry.terraform.io/hashicorp/aws/5.4.0/darwin_arm64/terraform-provider-aws_v5.4.0_x5 pid=74591
2025-01-21T15:42:06.299-0600 [DEBUG] provider: plugin exited

Panic Output

No response

Important Factoids

No response

References

No response

Would you like to implement a fix?

None

@65156 65156 added the bug Addresses a defect in current functionality. label Jan 21, 2025
Copy link

Community Note

Voting for Prioritization

  • Please vote on this issue by adding a 👍 reaction to the original post to help the community and maintainers prioritize this request.
  • Please see our prioritization guide for information on how we prioritize.
  • Please do not leave "+1" or other comments that do not add relevant new information or questions, they generate extra noise for issue followers and do not help prioritize the request.

Volunteering to Work on This Issue

  • If you are interested in working on this issue, please leave a comment.
  • If this would be your first contribution, please review the contribution guide.

@github-actions github-actions bot added service/codepipeline Issues and PRs that pertain to the codepipeline service. needs-triage Waiting for first response or review from a maintainer. labels Jan 21, 2025
@justinretzolk
Copy link
Member

Hey @65156 👋 Thank you for taking the time to raise this! I noticed that you're using a fairly old version of the AWS Provider (~1.5 years old at this point). Since then, this resource has been migrated to the new version of the AWS Go SDK, as well as had several other bug fixes. Can you test with a newer version of the provider and let us know if the issue persists?

@justinretzolk justinretzolk added the waiting-response Maintainers are waiting on response from community or contributor. label Jan 22, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Addresses a defect in current functionality. needs-triage Waiting for first response or review from a maintainer. service/codepipeline Issues and PRs that pertain to the codepipeline service. waiting-response Maintainers are waiting on response from community or contributor.
Projects
None yet
Development

No branches or pull requests

2 participants