CA set activation
akamai_mtlstruststore_ca_set_activation
Beta
Hello. Just a note to let you know the underlying API on which this resource 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 resource works like you need and expect.

Activate or deactivate certificates for a CA set version on either the staging or production network.
Notes:
- The CA set activation resource can only activate a CA set version on one network, staging or production. To activate on both, you need to instantiate two separate resources.
- A new activation automatically replaces an old activation.
resource "akamai_mtlstruststore_ca_set_activation" "my-ca-set-activation" {
ca_set_id = "12345"
network = "STAGING"
version = 1
timeouts = {
create = "30m"
update = "30m"
delete = "30m"
}
}
Arguments
Send the ca_set_id
, version
, and network
arguments to activate or deactivate a CA set version.
Attribute | Required | Description |
---|---|---|
ca_set_id |
✔ | Your CA set's ID. |
version |
✔ | Your CA set's version number. |
network |
✔ | The Akamai network in which to activate your CA set version, either STAGING or PRODUCTION . |
timeouts |
Uses the create , update , and delete arguments to override the provider's processing timeout. By default, it's one hour with a five-second polling interval. Value is a string containing a number and its time reference, h for hours, m for minutes, s for seconds. You can pass one, two, or all time units. For example:
|
Attributes
There is no default standard output. Upon creation, the last line of the process log contains a success message.
Adding an output
block returns the CA set version activation's details you provided upon activation and the computed attributes.
Attribute | Description |
---|---|
id | The CA set's activation ID. |
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 request. |
modified_date | The timestamp indicating when the activation request was last modified. Returns null if not yet modified. |
Updated about 22 hours ago