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 = "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 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. |
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. |
Attributes
There is no default standard output. Adding an output block returns the the current status of your activation. Value is one of:
ACTIVEINACTIVEMODIFIEDPENDING_ACTIVATIONPENDING_DEACTIVATIONFAILED
Updated 1 day ago
