GuideReference
TrainingSupportCommunity
Guide

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.

ArgumentRequiredDescription
property_id✔️Your property's ID.
versionThe activated property version. If not specified, it returns the latest activated version.
networkThe Akamai network where you want to check the activation details, either STAGING or PRODUCTION. If not specified, it defaults to STAGING.

Attributes

Returned to you is information about the given property version's activation.

AttributeDescription
activation_idThe property activation's ID.
contactThe email addresses to notify of the activation status change.
errorsErrors returned during activation.
idThe data source's ID.
networkThe Akamai network for which the activation has been performed.
noteA human-readable message about the activation request.
property_idThe property's ID.
statusThe property version's activation status on the selected network.
versionThe version of the property you've activated.
warningsWarnings returned during activation.