Activation history
akamai_datastream_activation_history
Get activation status changes for a given data stream across all versions.
data "akamai_datastream_activation_history" "my_activation_history" {
stream_id = 12345
}
output "my_activation_history" {
value = data.akamai_datastream_activation_history.my_activation_history
}my_activation_history = {
activations = [
{
modified_by = "jsmith"
modified_date = "2023-06-14T12:51:06Z"
status = "ACTIVATED"
stream_id = 12345
stream_version = 2
},
{
modified_by = "jsmith"
modified_date = "2023-06-14T12:43:33Z"
status = "DEACTIVATED"
stream_id = 12345
stream_version = 1
},
]
id = "12345"
log_type = null
stream_id = 12345
}Arguments
Pass a data stream ID to get information about your stream.
| Argument | Required | Description |
|---|---|---|
stream_id | ✔️ | Your data stream's ID. |
log_type | The type of activation history to get. Possible values are:
CDN. |
Attributes
Returned in the activations set are details about modifications made to your datas treams.
| Attribute | Description |
|---|---|
modified_by | The name of the user who activated or deactivated the stream. |
modified_date | The date and time of an activation status change. |
stream_id | The stream's ID. |
stream_version | The stream's version. |
status | The current activation status. |
