GuideReference
Guide

Hostname activations

akamai_property_hostname_activations

📘

This applies only to properties of the HOSTNAME_BUCKET type.

List all property hostname activations available to you.

data "akamai_property_hostname_activations" "my-hostname-activations" {
  property_id = "12345"
  network     = "STAGING"
  group_id    = "12345"
  contract_id = "C-0N7RAC7"
}

output "my-hostname-activations" {
  value = data.akamai_property_hostname_activations.my-hostname-activations
}
Changes to Outputs:
  + my-hostname-activations = {
      + account_id           = "A-CCT1234"
      + contract_id          = "C-0N7RAC7"
      + group_id             = "12345"
      + hostname_activations = [
          + {
              + activation_type        = "ACTIVATE"
              + hostname_activation_id = "atv_12345"
              + network                = "STAGING"
              + note                   = "Sample activation"
              + notify_emails          = [
                  + "jsmith@email.com",
                ]
              + status                 = "ACTIVE"
              + submit_date            = "2025-03-10T15:20:44Z"
              + update_date            = "2025-03-10T15:23:00Z"
            },
        ]
      + network              = "STAGING"
      + property_id          = "12345"
      + property_name        = "my-property"
    }

Arguments

Send your property ID in the body of the declaration to get a list of hostname activations. If your property belongs to more than one contract and group, add the group and contract IDs.

ArgumentRequiredDescription
property_idYour property's ID.
networkThe network of activation, either STAGING or PRODUCTION.
group_idYour group's ID.
contract_idYour contract's ID.

Attributes

Returned to you is a set of hostname activations.

Attribute Description
account_id The account's ID.
contract_id The contract's ID.
group_id The group's ID.
hostname_activations The set of hostnames activated within a given property activation on the staging and production networks. Includes:
  • activation_type. The activation type, either ACTIVATE or DEACTIVATE.
  • hostname_activation_id. The hostname activation's ID.
  • network. The network of activation, either STAGING or PRODUCTION.
  • note. A human-readable message about the activation request.
  • notify_emails. A list of email addresses notified of the activation status change.
  • status. The activation's status. Possible values:
    • ACTIVE. Currently serving traffic.
    • INACTIVE. Another activation has superseded this one.
    • PENDING. Not yet active.
    • ABORTED. The client followed up with canceling a pending property hostname activation.
    • FAILED. The activation causes a range of edge network errors that may cause a fallback to the previous activation.
    • PENDING_DEACTIVATION or DEACTIVATED. When the activation_type is DEACTIVATE to no longer serve traffic.
  • submit_date. The ISO 8601 timestamp indicating when the activation was initiated.
  • update_date. The ISO 8601 timestamp indicating when the status last changed.
network The selected network of activation, either STAGING or PRODUCTION.
property_id The property's ID.
property_name A human-readable, descriptive name for the property.