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

SECKSD-30357 Clientlist activation failure on staging and prod at the same time #600

Open
alwashali opened this issue Jan 2, 2025 · 1 comment

Comments

@alwashali
Copy link

Hi there,
I am facing failed activation each time I apply the config to a client list, details below

Terraform and Akamai Terraform Provider Versions

Run terraform -v in the directory with the .tf files to show the terraform and akamai provider versions. If you are not running the latest versions of Terraform and Akamai Terraform Provider, please upgrade because your issue may have already been fixed.
Terraform v1.9.6

Affected Resource(s)

Please list the resources as a list, for example:

  • akamai_clientlist_list

Terraform Configuration Files

resource "akamai_clientlist_list" "list_145800_listips" {
  name  = "endpoints checkpoints"
  type  = "IP"
  notes = ""
  tags  = []

  contract_id = var.contract_id
  group_id    = var.web_group_id

  dynamic "items" {
    for_each = jsondecode(file("./lists-json/145800_listips.json"))

    content {
      value           = items.value.value
      description     = items.value.description
      tags            = items.value.tags
      expiration_date = items.value.expirationDate
    }
  }
}

resource "akamai_clientlist_activation" "activation_145800_listips_STAGING" {
  list_id                 = akamai_clientlist_list.list_145800_listips.list_id
  version                 = akamai_clientlist_list.list_145800_listips.version
  network                 = "STAGING"
  comments                = "List migration"
  notification_recipients = ["[email protected]"]
  siebel_ticket_id        = ""
}

resource "akamai_clientlist_activation" "activation_145800_listips_PRODUCTION" {
  list_id                 = akamai_clientlist_list.list_145800_listips.list_id
  version                 = akamai_clientlist_list.list_145800_listips.version
  network                 = "PRODUCTION"
  comments                = "List migration"
  notification_recipients = ["[email protected]"]
  siebel_ticket_id        = ""
}

Expected Behavior

What should have happened?
Successful activation on prod and staging

Actual Behavior

Only one of the network is activated and other fails with error : Error: Title: Internal Server Error; Type: https://problems.luna.akamaiapis.net/client-list/error-types/INTERNAL-SERVER-ERROR; Detail: Error occurred activating client list 145800_UPTRENDSCHECKPOINTS

Steps to Reproduce

Please list the steps required to reproduce the issue, for example:

  1. Create client list resource
  2. Add or remove an item
  3. activate on staging and prod at the same time
  4. terraform apply
@lsadlon lsadlon changed the title Clientlist activation failure on staging and prod at the same time SECKSD-30357 Clientlist activation failure on staging and prod at the same time Jan 2, 2025
@lsadlon
Copy link

lsadlon commented Jan 2, 2025

Hi @alwashali

I created internal ticket to check that issue. We will inform you about progress.

BR,
Lukasz

@aka-mark aka-mark added the STG label Jan 16, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Development

No branches or pull requests

3 participants