Skip to content
This repository was archived by the owner on Mar 26, 2025. It is now read-only.

Commit 3b23e66

Browse files
committed
Formating fixes
1 parent 4fa9de5 commit 3b23e66

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

modules/backup/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This is a simple module to create a AWS Backup vault, KMS keys, Plans and automa
66

77
The vault module should be ran first in the remote AWS account.
88

9-
**WARNING** Once a snaphshot has been placed intothe remote locked vault it can not be removed until the
9+
**WARNING** Once a snaphshot has been placed intothe remote locked vault it can not be removed until the
1010
lifecycle duration has been exceeded.
1111

1212
## Module parameters
@@ -43,6 +43,6 @@ module "rss_prod_backup_vault" {
4343
remote_lifecycle = 90
4444
backup_schedule = "cron(15 11 ? * * *)"
4545
use_env = true
46-
environment = "prod"
46+
environment = "prod"
4747
}
4848
```

modules/backup/kms.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Create a specific KMS key for the local backup vault and allow the remote
1+
// Create a specific KMS key for the local backup vault and allow the remote
22
// AWS account access to that key.
33

44
resource "aws_kms_alias" "remote_backup_vault_key" {
@@ -18,7 +18,7 @@ resource "aws_kms_key" "remote_backup_vault" {
1818
"Sid": "Enable IAM User Permissions",
1919
"Effect": "Allow",
2020
"Principal": {
21-
"AWS": "arn:aws:iam::${data.aws_caller_identity.current.id}:root"
21+
"AWS": "arn:aws:iam::${data.aws_caller_identity.current.id}:root"
2222
},
2323
"Action": "kms:*",
2424
"Resource": "*"

modules/vault/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ cool-off period has been passed vault locking can not be removed.
1717
|:---------------|:---------------------------------------|:------:|:------:|
1818
| client_name | The name of the client being served | string | - |
1919
| client_account | The AWS Account ID number being served | string | - |
20-
| lock_vault | Whether to lock the vault | bool | false |
20+
| lock_vault | Whether to lock the vault | bool | false |
2121

2222
## Sample usage
2323

modules/vault/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,4 +89,4 @@ resource "aws_kms_key" "backup" {
8989
]
9090
}
9191
POLICY
92-
}
92+
}

0 commit comments

Comments
 (0)