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.
Argument | Required | Description |
---|---|---|
property_id | ✔ | Your property's ID. |
hostname_activation_id | ✔ | Your hostname activation's ID. |
group_id | Your group's ID. | |
contract_id | Your contract'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. |
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:
|
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:
|
submit_date |
The ISO 8601 timestamp indicating when the activation was initiated. |
update_date |
The ISO 8601 timestamp indicating when the status last changed. |
Updated 14 days ago