hiera-aws 0.0.1 → 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.travis.yml +13 -0
- data/Gemfile +3 -0
- data/README.md +4 -1
- data/lib/hiera/backend/aws/elasticache.rb +1 -1
- data/lib/hiera/backend/aws/version.rb +1 -1
- metadata +4 -3
data/.travis.yml
ADDED
data/Gemfile
CHANGED
data/README.md
CHANGED
@@ -1,5 +1,7 @@
|
|
1
1
|
# Hiera AWS Backend
|
2
2
|
|
3
|
+
[](https://travis-ci.org/Jimdo/hiera-aws)
|
4
|
+
|
3
5
|
This backend for [Hiera] allows you to retrieve information from AWS that you
|
4
6
|
can use in your Puppet code at runtime. For example, you can ask the backend to
|
5
7
|
get a list of all nodes part of a specific ElastiCache cluster.
|
@@ -44,7 +46,8 @@ The backend currently supports the following keys that you can pass to the
|
|
44
46
|
|
45
47
|
Returns an array of all nodes part of a ElastiCache cluster. The cluster is
|
46
48
|
identified by its physical ID which must be passed to the backend via the Puppet
|
47
|
-
fact `$cache_cluster_id`.
|
49
|
+
fact `$cache_cluster_id`. The returned array has the format `["host1:port",
|
50
|
+
"host2:port"]`.
|
48
51
|
|
49
52
|
```
|
50
53
|
$cache_cluster_id = "your_cluster_id"
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hiera-aws
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 27
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 0.0.
|
9
|
+
- 2
|
10
|
+
version: 0.0.2
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Mathias Lafeldt
|
@@ -87,6 +87,7 @@ extra_rdoc_files: []
|
|
87
87
|
|
88
88
|
files:
|
89
89
|
- .gitignore
|
90
|
+
- .travis.yml
|
90
91
|
- Gemfile
|
91
92
|
- LICENSE
|
92
93
|
- README.md
|