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.

ArgumentRequiredDescription
idYour CA set's activation ID.
ca_set_idYour CA set's ID.
ca_set_nameYour 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.

AttributeDescription
idThe CA set's activation ID.
ca_set_idThe CA set's ID.
ca_set_nameThe CA set's name.
versionThe CA set's version number.
networkThe network for any activation-related activities, either STAGING or PRODUCTION.
created_byThe user who requested the activation.
created_dateThe timestamp indicating when the activation was requested.
modified_byThe user who modified the activation.
modified_dateThe timestamp indicating when the activation was last modified. Returns null if not yet modified.
statusThe activation-related activity's status, either IN_PROGRESS, COMPLETE, or FAILED.
typeThe type of the activation-related activity, either ACTIVATE, DEACTIVATE, or DELETE.