Policy activation

akamai_cloudlets_policy_activation

Get details about your cloudlet's policy activation.

data "akamai_cloudlets_policy_activation" "my_policy_activation" { policy_id = 123456 network = "staging" } output "my_policy_activation" { value = data.akamai_cloudlets_policy_activation.my_policy_activation }
Changes to Outputs: + my_policy_activation = { + associated_properties = null + id = "123456:\"staging\"" + network = "staging" + policy_id = 123456 + status = "SUCCESS" + version = 1 }

Arguments

Pass a policy ID and the network on which it's active.

ArgumentRequiredDescription
policy_id✔️A cloudlet policy ID.
network✔️The network on which you are activating your client list. Either staging or production.
associated_propertiesFor non-shared cloudlets policy activations.

A list of properties associated with your cloudlet.

Attributes

Returned to you are high-level details about your cloudlet policy activation.

AttributeDescription
associated_propertiesFor non-shared cloudlets policy activations.

A list of properties associated with your cloudlet.
idThe data source's run ID.
networkThe network on which you are activating your client list. Either staging or production.
policy_idThe cloudlet's policy ID.
statusThe activation status of your cloudlet's policy. One of:
  • IN_PROGRESS
  • SUCCESS
  • FAILED
versionThe cloudlet policy version.

Did this page help you?