CA set activation
akamai_mtlstruststore_ca_set_activation
Beta
Hello. Just a note to let you know the underlying API on which this data source is built is general release and has been vetted, but because this is a new feature for our Terraform provider, we've given it beta label.
This status just means we've paused for a bit to get your feedback to make sure this data source works like you need and expect.
Get details of a CA set's activation or deactivation.
data "akamai_mtlstruststore_ca_set_activation" "my-ca-set-activation" {
id = 12345
ca_set_name = "my-ca-set"
}
output "my-ca-set-activation" {
value = data.akamai_mtlstruststore_ca_set_activation.my-ca-set-activation
}
my-ca-set-activation = {
ca_set_id = "98765"
ca_set_name = "my-ca-set"
created_by = "jsmith"
created_date = "2025-05-04T11:43:51.987Z"
id = 12345
modified_by = "jsmith"
modified_date = "2025-05-04T11:50:38.767Z"
network = "STAGING"
status = "COMPLETE"
type = "ACTIVATE"
version = 1
}
Arguments
Pass a CA set's activation ID along with the CA set's ID or name in the data
block to get the details of the activation or deactivation.
Argument | Required | Description |
---|---|---|
id | ✔ | Your CA set's activation ID. |
ca_set_id | Your CA set's ID. | |
ca_set_name | Your CA set's name. It must match exactly. If there are multiple CA sets with the same name, you get an error. In this case, use the ca_set_id argument to fetch the CA set activation. |
Attributes
Returned to you are the details of the CA set's activation or deactivation.
Attribute | Description |
---|---|
id | The CA set's activation ID. |
ca_set_id | The CA set's ID. |
ca_set_name | The CA set's name. |
version | The CA set's version number. |
network | The network for any activation-related activities, either STAGING or PRODUCTION . |
created_by | The user who requested the activation. |
created_date | The timestamp indicating when the activation was requested. |
modified_by | The user who modified the activation. |
modified_date | The timestamp indicating when the activation was last modified. Returns null if not yet modified. |
status | The activation-related activity's status, either IN_PROGRESS , COMPLETE , or FAILED . |
type | The type of the activation-related activity, either ACTIVATE , DEACTIVATE , or DELETE . |
Updated about 22 hours ago