Application load balancer activation
akamai_cloudlets_application_load_balancer_activation
Activate a application load balancer cloudlet configuration on either the staging or production network.
Running
terraform destroydoes not delete your configuration; it only removes it from your state file. Re-import your configuration to get it back.
resource "akamai_cloudlets_application_load_balancer_activation" "my_alb_activation" {
  origin_id = "my_alb"
  network = "staging"
  version = 1
  timeouts {
  	default = "1h"
   }
}
output "my_alb_activation" {
  value = akamai_cloudlets_application_load_balancer_activation.my_alb_activation
}
Arguments
Pass all arguments to activate your load balancer configuration on a network.
| Argument | Required | Description | 
|---|---|---|
| origin_id | ✔ | A user created ID that represents a data center for an application load balancer implementation. Alphanumeric characters and underscores only, and the first and last characters must be alphanumeric. Note:. The application load balancer cloudlet only supports a setting of  | 
| network | ✔ | The network on which you are activating your client list. Either stagingorproduction. | 
| version | ✔ | The application load balancer configuration version to activate. | 
| timeouts | ✔ | Uses a defaultargument to override the HashiCorp processing timeout of 20 minutes. Value is a string containing a number and its time reference,h,m,s. You can pass one, two, or all values. For example:
 | 
Attribute
Returned to you is your activation's status.
Updated 3 months ago
