Activation
Activate or update an activation for a client list.
resource "akamai_clientlist_activation" "my_activation" {
list_id = "123456_MYCLIENTLIST"
version = 1
network = "STAGING"
comments = "My activation comments"
notification_recipients = ["jsmith@example.com"]
}
Arguments
Pass all arguments to activate your client list.
An update of thecomments
ornotification_recipients
arguments 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. |
version | ✔️ | Your client list's version number. |
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. |
Updated 3 months ago