EdgeKV group items
akamai_edgekv_group_items
Get a map of items for your EdgeKV groups.
data "akamai_edgekv_group_items" "my_items" {
  namespace_name = "My_EdgeKV"
  network        = "staging"
  group_name     = "My_EKV_group"
}
output "my_items" {
  value = data.akamai_edgekv_group_items.my_items
}
Changes to Outputs:
  + my_items  = {
      + group_name     = "My_EKV_group"
      + id             = "My_EdgeKV:staging:My_EKV_group"
      + items          = {
          key1 = "value1"
          key2 = "value2"
          key3 = "value3"
        }
      + namespace_name = "My_EdgeKV"
      + network        = "staging"
    }
Arguments
| Argument | Required | Description | 
|---|---|---|
| namespace_name | ✔️ | The name of your EdgeKV namespace. | 
| network | ✔️ | The network from where the activation information will be fetched. | 
| group_name | ✔️ | The name you gave to the EdgeKV group that contains your items. | 
Attributes
Returned to you is a computed map of the items for your query's given group that includes your group's id in <namespace>:<network>:<group_name> format.
Updated almost 2 years ago
