Activation

akamai_clientlist_activation

Activate, deactivate, or update an activation for a client list. To deactivate your client list's activation, run terraform destroy.

resource "akamai_clientlist_activation" "my_activation" {
  list_id                 = "12345_MYCLIENTLIST"
  network                 = "STAGING"
  comments                = "Activating a client list on staging"
  notification_recipients = ["jsmith@example.com"]
}
 my_activation = {
  comments                = "Activating a client list on staging"
  id                      = "54321"
  list_id                 = "12345_MYCLIENTLIST"
  network                 = "STAGING"
  notification_recipients = [
    "jsmith@example.com",
  ]
  siebel_ticket_id        = ""
  status                  = "ACTIVE"
  version                 = 1
}

Arguments

Pass all arguments to activate your client list.

An update of the comments or notification_recipients arguments without an additional change of version, list ID, or network does not trigger an activation, deactivation, or change in your state.
ArgumentRequiredDescription
list_id✔️Your client list's ID.
network✔️The network on which you're activating your client list. Either STAGING or PRODUCTION.
commentsA brief description for the activation.
notification_recipientsA list of email addresses that receive activation status notifications.
siebel_ticket_idThe Siebel ticket, if the activation is linked to one.

Attributes

There is no default standard output. Adding an output block returns the details you provided upon activation, along with the computed attributes.

Attribute Description
id The activation's ID.
version The client list's version you activated.
status The current activation status. Value is one of:
  • ACTIVE
  • INACTIVE
  • MODIFIED
  • PENDING_ACTIVATION
  • PENDING_DEACTIVATION
  • FAILED