GuideReference
Guide

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.

ArgumentRequiredDescription
contract_idYour contract's ID.
group_idYour group's ID.
include_idYour include's ID.
networkThe 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.

AttributeDescription
contract_idYour contract's ID.
group_idYour group's ID.
idYour data source' ID.
include_idYour include's ID.
networkThe Akamai network on which your include is active.
versionYour activated include's version.
nameYour activated include's name.
noteA human-readable message about the activation request.
notify_emailsA list of email addresses notified of the activation status change.

Did this page help you?