GuideReference
Guide

Hostname activation

akamai_property_hostname_activation

📘

This applies only to properties of the HOSTNAME_BUCKET type.

Get details of a property hostname activation.

data "akamai_property_hostname_activation" "my-hostname-activation" {
  property_id            = "12345"
  hostname_activation_id = "12345"
  group_id               = "12345"
  contract_id            = "C-0N7RAC7"
  include_hostnames      = true
}

output "my-hostname-activation" {
  value = data.akamai_property_hostname_activation.my-hostname-activation
}
Changes to Outputs:
  + my-hostname-activation = {
      + account_id             = "A-CCT1234"
      + activation_type        = "ACTIVATE"
      + contract_id            = "C-0N7RAC7"
      + group_id               = "12345"
      + hostname_activation_id = "12345"
      + hostnames              = [
          + {
              + action                 = "ADD"
              + cert_provisioning_type = "DEFAULT"
              + cname_from             = "example.com"
              + cname_to               = "example.com.edgesuite.net"
              + edge_hostname_id       = "12345"
            },
        ]
      + include_hostnames      = true
      + network                = "STAGING"
      + note                   = "Sample activation"
      + notify_emails          = [
          + "jsmith@email.com",
        ]
      + property_id            = "12345"
      + property_name          = "my-property"
      + status                 = "ACTIVE"
      + submit_date            = "2025-03-10T15:20:44Z"
      + update_date            = "2025-03-10T15:23:00Z"
    }

Arguments

Send your property and hostname activation IDs in the body of the declaration to get the hostname activation details. If your property belongs to more than one contract and group, add the group and contract IDs.

ArgumentRequiredDescription
property_idYour property's ID.
hostname_activation_idYour hostname activation's ID.
group_idYour group's ID.
contract_idYour contract's ID.
include_hostnamesWhen set to true, the response includes the property hostnames for a given activation and the related certificate status on the staging and production networks.

Attributes

Returned to you are the details of the given property hostname activation.

Attribute Description
account_id The account's ID.
activation_type The activation type, either ACTIVATE or DEACTIVATE.
contract_id The contract's ID.
group_id The group's ID.
hostname_activation_id The hostname activation's ID.
hostnames The set of hostnames activated within a given property activation on the staging and production networks. Includes:
  • action. The action performed on the hostname item, either ADD or REMOVE.
  • cert_provisioning_type. A certificate's provisioning type. Either CPS_MANAGED for custom provisioned certificates or DEFAULT for automatically provisioned certificates.
    Note: When the DEFAULT certificate's production or staging status is PENDING, EXPIRING_SOON_NEEDS_VALIDATION, or EXPIRED_NEEDS_VALIDATION, perform a domain validation to prove you control the domain. You can do this by adding a CNAME record to your DNS.
  • cname_from. A hostname's origin.
  • cname_to. The hostname for edge content.
  • edge_hostname_id. An edge hostname's ID.
include_hostnames When set to true, the response includes the property hostnames for a given activation and the related certificate status on the staging and production networks.
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.
property_id The property's ID.
property_name A human-readable, descriptive name for the property.
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.