EdgeKV group items
akamai_edgekv_group_items
Create, update, or delete an EdgeKV group and its items.
resource "akamai_edgekv_group_items" "my_group_items" {
namespace_name = "My_EdgeKV"
network = "staging"
group_name = "My_EKV_group"
items = {
key1 = "value1"
key2 = "value2"
key3 = "value3"
}
timeouts {
default = "1h"
}
}
// create
akamai_edgekv_group_items.my_group: Creation complete after 1m7s [id=My_EdgeKV:staging:My_EKV_group]
Apply complete! Resources: 1 added, 0 changed, 0 destroyed.
// update
akamai_edgekv_group_items.my_group: Modifications complete after 22s [id=My_EdgeKV:staging:My_EKV_group]
Apply complete! Resources: 0 added, 1 changed, 0 destroyed.
Arguments
Argument | Attribute | Description |
---|---|---|
namespace_name |
✔️ | The name of your EdgeKV namespace. |
network |
✔️ | The network on which you want to activate the EdgeKV database, staging or production . |
group_name |
✔️ | The name you give to the EdgeKV group that will contain your items. |
items |
✔️ | The key-value pairs that represent the information saved in the database. |
timeouts |
Uses a default argument 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:.
|
Attributes
There is no standard output for this resource.
Updated 12 days ago