Include activation
akamai_property_include_activation
Average processing time 3–4 minutes
Activate your include and make it available to a property.
resource "akamai_property_include_activation" "my_include_activation" {
include_id = "123456"
contract_id = "C-0N7RAC7"
group_id = "12345"
version = 1
network = "STAGING"
notify_emails = [
"josmith@example.com",
"jasmith@example.com",
]
timeouts {
default = "1h"
}
}
Arguments
Pass your contract, group, and include IDs along with other details to activate an include.
Argument | Required | Description |
---|---|---|
include_id | ✔ | An include's ID you want to activate. |
contract_id | ✔ | Your contract's ID. |
group_id | ✔ | Your group's ID. |
version | ✔ | The version of the include you want to activate. |
network | ✔ | The Akamai network for which the activation will be performed. Possible values: STAGING or PRODUCTION . |
notify_emails | ✔ | The list of email addresses to notify of the activation status change. |
note | A human-readable message about the activation request. Note: A | |
auto_acknowledge_rule_warnings | Whether to automatically acknowledge all rule warnings for activation and continue.
| |
timeouts | A default argument to override the HashiCorp processing timeout of 20 minutes. Value is a string containing a number and its time reference, h , m , s . You can pass one, two, or all values. For example:
|
Attributes
There is no default standard output. Upon creation, the last line of the process log contains your contract, group, and include ID with information on which network the include has been activated.
Adding an output block returns basic information about your active include.
Attribute | Description |
---|---|
auto_acknowledge_rule_warnings | Whether to automatically acknowledge all rule warnings for activation and continue. |
contract_id | Your contract's ID. |
group_id | Your group's ID. |
id | Your resource's ID. |
include_id | An include's ID you've activated. |
network | The Akamai network for which the activation has been performed. |
note | A human-readable message about the activation request. |
notify_emails | The list of email addresses to notify of the activation status change. |
timeouts | A default argument that overrides the HashiCorp processing timeout of 20 minutes. |
validations | The validation information in JSON format. |
version | The version of the include you've activated. |
Updated 4 months ago