Include activation
akamai_property_include_activation
Get activation details for an include on the specified network.
You can also modify the activation time-out with the AKAMAI_ACTIVATION_TIMEOUT
environment variable, specifying time in minutes. The default time-out is 30 minutes.
data "akamai_property_include_activation" "my_include_activation" {
contract_id = "C-0N7RAC7"
group_id = "12345"
include_id = "1234"
network = "PRODUCTION"
}
output "my_include_activation" {
value = data.akamai_property_include_activation.my_include_activation
}
Changes to Outputs:
+ my_include_activation = {
+ contract_id = "C-0N7RAC7"
+ group_id = "12345"
+ id = "1234:PRODUCTION"
+ include_id = "1234"
+ name = "my-property-include"
+ network = "PRODUCTION"
+ note = ""
+ notify_emails = [
+ "jsmith@email.com",
]
+ version = "1"
}
Arguments
Send your contract, group, include IDs, and network type in the body of the declaration to get activation details.
Argument | Required | Description |
---|---|---|
contract_id | ✔ | Your contract's ID. |
group_id | ✔ | Your group's ID. |
include_id | ✔ | Your include's ID. |
network | ✔ | The Akamai network where you want to check the activation details, either STAGING or PRODUCTION . |
Attributes
Returned to you is a computed set that contains the activation details for the given include.
Attribute | Description |
---|---|
contract_id | Your contract's ID. |
group_id | Your group's ID. |
id | Your data source' ID. |
include_id | Your include's ID. |
network | The Akamai network on which your include is active. |
version | Your activated include's version. |
name | Your activated include's name. |
note | A human-readable message about the activation request. |
notify_emails | A list of email addresses notified of the activation status change. |
Updated 4 months ago