Module: kv-store
This module is a key/value store for storing configuration data that should be shared among terraform root modules. The backend for this key/value store is a generic Artifactory repository.
Introduction
Usage
For a complete example, see examples/complete.
For automated tests of the complete example using bats and Terratest (which tests and deploys the example on AWS), see test.
module "example" {
source = "cloudposse/kv-store/artifactory"
# Cloud Posse recommends pinning every module to a specific version
# version = "x.x.x"
set = {
"key1" = {value = "value1", sensative = false }
"key2" = {value = "value2", sensative = true }
}
context = module.label.this
}
Quick Start
Here's how to get started...
Examples
Here is an example of using this module:
examples/complete
- complete example of using this module