Skip to content

Commit

Permalink
Update CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
ingalls committed Oct 8, 2024
1 parent 3375b89 commit 3c0e084
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@

### Pending Release

### v2.9.1

- :bug: Flip Resource name

### v2.9.0

- :rocket: Remove unused AWS Secret
Expand Down
4 changes: 2 additions & 2 deletions cloudformation/lib/api.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,15 +61,15 @@ const PORTS = [{
});

const Resources = {
MasterSecret: {
SigningSecret: {
Type: 'AWS::SecretsManager::Secret',
Properties: {
Description: cf.join([cf.stackName, ' API Password']),
GenerateSecretString: {
ExcludePunctuation: true,
PasswordLength: 32
},
Name: cf.join([cf.stackName, '/api/password']),
Name: cf.join([cf.stackName, '/api/secret']),
KmsKeyId: cf.ref('KMS')
}
},
Expand Down

0 comments on commit 3c0e084

Please sign in to comment.