Activation
akamai_edgeworker_activation
Get details about the latest activation for a given EdgeWorker and network.
The data returned is for information purposes only and is not used downstream in any of the other EdgeWorkers data sources or resources.
data "akamai_edgeworker_activation" "my_activations" {
edgeworker_id = 12345
network = "PRODUCTION"
}
output "my_activations" {
value = data.akamai_edgeworker_activation.my_activations
}
Changes to Outputs:
+ my_activations = {
+ activation_id = 5
+ edgeworker_id = 12345
+ id = "12345:PRODUCTION"
+ network = "PRODUCTION"
+ version = "2.4"
}
Arguments
Argument | Required | Description |
---|---|---|
edgeworker_id | ✔️ | An EdgeWorker's identifier. |
network | ✔️ | The network from where the activation information is fetched. |
Attributes
Attribute | Description |
---|---|
activation_id | An activation's identifier. |
version | The EdgeWorker version of the latest activation. |
Updated about 1 year ago