Property activation
akamai_property_activation
Retrieve activation information for a property version on staging or production network.
data "akamai_property_activation" "my_property_activation" {
  property_id = "12345"
  version     = 3
  network     = "STAGING"
}
output "my_property_activation" {
  value = data.akamai_property_activation.my_property_activation
}
Changes to Outputs:
  + my_property_activation = {
      + activation_id = "atv_123456"
      + contact       = [
          + "jsmith@email.com",
        ]
      + errors        = ""
      + id            = "prp_12345:STAGING"
      + network       = "STAGING"
      + note          = "Activating on staging"
      + property_id   = "prp_12345"
      + status        = "ACTIVE"
      + version       = 3
      + warnings      = ""
    }
Arguments
Pass your property's ID in the body of the declaration to get its activation details.
| Argument | Required | Description | 
|---|---|---|
| property_id | ✔️ | Your property's ID. | 
| version | The activated property version. If not specified, it returns the latest activated version. | |
| network | The Akamai network where you want to check the activation details, either STAGINGorPRODUCTION. If not specified, it defaults toSTAGING. | 
Attributes
Returned to you is information about the given property version's activation.
| Attribute | Description | 
|---|---|
| activation_id | The property activation's ID. | 
| contact | The email addresses to notify of the activation status change. | 
| errors | Errors returned during activation. | 
| id | The data source's ID. | 
| network | The Akamai network for which the activation has been performed. | 
| note | A human-readable message about the activation request. | 
| property_id | The property's ID. | 
| status | The property version's activation status on the selected network. | 
| version | The version of the property you've activated. | 
| warnings | Warnings returned during activation. | 
Updated about 1 year ago
