Activations
akamai_networklist_activations
Average processing time 3-5 minutes
Activate a network list in the staging or production network. To deactivate a network, use the network list resource.
resource "akamai_networklist_activations" "my_activation" {
network_list_id = "123456_MYNETWORKLIST"
network = "staging"
sync_point = 0
notes = "Activation to stage for testing"
notification_emails = ["jsmith@email.com"]
}
Arguments
Argument | Required | Description |
---|---|---|
network_list_id | ✔️ | Your network list's ID. |
notification_emails | ✔️ | A list of email addresses that receive change notifications. |
sync_point | ✔️ | The incremental version of your network list. |
network | Akamai network in which to activate your property, either staging or production . The default is staging . | |
notes | Additional information about your activation. |
Attributes reference
There is no default standard output. Upon creation, the last line of the process log contains your activation's ID.
Adding an output block returns basic information about your network list.
Argument | Description |
---|---|
id | Your activation ID. |
network_list_id | Your network list's ID. |
notification_emails | A list of email addresses that receive change notifications. |
network | Akamai network in which to activate your property, either staging or production . The default is staging . |
notes | Additional information about your activation. |
status | The status of your activation. One of:
|
sync_point | The incremental version of your network list. |
Updated 11 months ago