Configuration
akamai_cloudwrapper_configuration
Get details about a given Cloud Wrapper configuration.
data "akamai_cloudwrapper_configuration" "my_configuration" {
  id = 12345
}
output "my_configurations" {
  value = data.akamai_cloudwrapper_configuration.my_configuration
}
Changes to Outputs:
  + my_configuration = {
      + capacity_alerts_threshold = null
      + comments                  = "Configuration changes for 03/08/2023"
      + id                        = 12345
      + config_name               = "My_configuration1"
      + contract_id               = "C-0N7RAC7"
      + last_activated_by         = "jsmith"
      + last_activated_date       = "2023-03-08T22:25:19.724Z"
      + last_updated_by           = "jsmith"
      + last_updated_date         = "2023-03-08T20:54:44.000Z"
      + locations                 = [
          + {
              + capacity        = {
                  + unit  = "GB"
                  + value = 10
                }
              + comments        = "My comments about Europe."
              + map_name        = "cw-s-eu"
              + traffic_type_id = 5
            },
          + {
              + capacity        = {
                  + unit  = "GB"
                  + value = 10
                }
              + comments        = "My comments about the UK."
              + map_name        = "cw-s-gb"
              + traffic_type_id = 29
            },
        ]
      + multi_cdn_settings        = null
      + notification_emails       = [
          + "jsmith@example.com",
        ]
      + property_ids              = [
          + "12345",
          + "98765",
        ]
      + retain_idle_objects       = false
      + status                    = "ACTIVE"
    }
variable "config_name" {
  type        = string
  description = "My Cloud Wrapper configuration name."
  default     = "My_configuration2"
}
// tvars
config_name = var.config_name
Argument
Pass your Cloud Wrapper configuration ID in the body of the data block.
Attributes
Returned to you are high-level details about your configuration.
| Attribute | Description | 
|---|---|
| capacity_alerts_threshold | The storage limit that triggers a threshold alert. | 
| id | A configuration's ID. | 
| config_name | A configuration's name. | 
| comments | The descriptive information you provided about a configuration. | 
| contract_id | Your contract ID. | 
| last_activated_by | The name of the user who last activated the configuration. | 
| last_activated_date | The ISO 8601 time stamp for the latest activation. | 
| last_updated_by | The name of the user who last updated the configuration. | 
| last_updated_date | The ISO 8601 time stamp for the latest update. | 
| locations | A list of details about a location's traffic settings. 
 | 
| notification_emails | A list of email addresses that receive change notifications. | 
| property_ids | A list of the property IDs associated with your Cloud Wrapper configuration. | 
| retain_idle_objects | Boolean that sets retention status beyond the max idle lifetime. | 
| status | The current provisioning state of your configuration. 
 | 
Updated over 1 year ago
