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 thecommentsornotification_recipientsarguments without an additional change of version, list ID, or network does not trigger an activation, deactivation, or change in your state.
| Argument | Required | Description |
|---|---|---|
list_id | ✔️ | Your client list's ID. |
network | ✔️ | The network on which you're activating your client list. Either STAGING or PRODUCTION. |
comments | A brief description for the activation. | |
notification_recipients | A list of email addresses that receive activation status notifications. | |
siebel_ticket_id | The 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:
|
Updated 11 days ago
