aws-secrets-manager 1.1.7 → 1.1.9
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.
- checksums.yaml +4 -4
- data/README.md +3 -2
- data/lib/aws_secrets_manager/version.rb +1 -1
- data/lib/aws_secrets_manager.rb +0 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 90a8352b08a303335d95acfd19dcb9c0af1928bdf09304b5eea2f86018a4cdfc
|
|
4
|
+
data.tar.gz: 19321b36156444b7fad96727cce32c502f52d79a6cc1ec23207d65d864ed0c18
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 02ac6598112f119d3971960cd46fceec0d539697074675be469480defb9888ca1c595022c5dbd3808025399edd5f835cf5d0e97afef42b015e9c3bf68319007e
|
|
7
|
+
data.tar.gz: cc2cc2da359f59f3903ed928d45e1e9b0c724371e737a840a5d136308e892586958ebba56b3bc1137fdf59313594f5302c10c08784aa48cbb1472c436d6cf27e
|
data/README.md
CHANGED
|
@@ -16,7 +16,7 @@ If bundler is not being used to manage dependencies, install the gem by executin
|
|
|
16
16
|
|
|
17
17
|
## Usage
|
|
18
18
|
|
|
19
|
-
If you using Ruby on Rails then
|
|
19
|
+
If you using Ruby on Rails then
|
|
20
20
|
|
|
21
21
|
```ruby
|
|
22
22
|
rails g aws_secrets_manager:install
|
|
@@ -55,7 +55,7 @@ AwsSecretsManager.get_secret_value(
|
|
|
55
55
|
)
|
|
56
56
|
```
|
|
57
57
|
|
|
58
|
-
In complex environments where applications require the use of multiple secrets, this
|
|
58
|
+
In complex environments where applications require the use of multiple secrets, this gem can be an interesting solution.
|
|
59
59
|
|
|
60
60
|
In AWS Secrets Manager if you have secret with name example-1 and with Secret value type => Key/value:
|
|
61
61
|
|
|
@@ -126,6 +126,7 @@ Console output:
|
|
|
126
126
|
"SMTP_HOST"=>"mailcluster.example.com",
|
|
127
127
|
"FAKE_SSH_KEY"=>"-----BEGIN PRIVATE KEY-----\nMIIEvgIBADANBgkqhkiG9w0BAQEFAASCBKgwggSkAgEAAoIBAQCxxx7OfuLEm3wm\njOVKL4+ibYBrrL3p8id2x4DZ3C+7C8ZkwsC6\n"
|
|
128
128
|
}
|
|
129
|
+
```
|
|
129
130
|
|
|
130
131
|
## Development
|
|
131
132
|
|
data/lib/aws_secrets_manager.rb
CHANGED