You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 31, 2021. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+11
Original file line number
Diff line number
Diff line change
@@ -97,6 +97,11 @@ Available targets:
97
97
| acm_primary_domain | A domain name for which the certificate should be issued | string | - | yes |
98
98
| acm_san_domains | A list of domains that should be SANs in the issued certificate | list |`<list>`| no |
99
99
| attributes | Additional attributes (e.g. `1`) | list |`<list>`| no |
100
+
| backup_enabled | Set to false to prevent the module from creating any resources | string | `` | no |
101
+
| backup_s3_access_key_name | Backup s3 user IAM access key name for storing in SSM. Default to aws_acces_key_id so chamber exports as AWS_ACCESS_KEY_ID, a standard AWS IAM ENV variable | string |`codefresh_backups_aws_access_key_id`| no |
102
+
| backup_s3_allowed_bucket_actions | List of actions to permit for backup s3 bucket | list |`<list>`| no |
103
+
| backup_s3_secret_key_name | Backup s3 user IAM secret key name for storing in SSM. Default to aws_secret_acces_key so chamber exports as AWS_SECRET_ACCESS_KEY, a standard AWS IAM ENV variable | string |`codefresh_backups_aws_secret_access_key`| no |
104
+
| backup_s3_user_enabled | Set to `true` to create an user with permission to access the backup s3 bucket | string | `` | no |
100
105
| chamber_format | Format to store parameters in SSM, for consumption with `chamber`| string |`/%s/%s`| no |
101
106
| chamber_service |`chamber` service name. See [chamber usage](https://github.com/segmentio/chamber#usage) for more details | string | `` | no |
102
107
| delimiter | Delimiter to be used between `namespace`, `stage`, `name` and `attributes`| string |`-`| no |
@@ -165,6 +170,12 @@ Available targets:
165
170
| aurora_postgres_master_hostname | Aurora Postgres DB Master hostname |
166
171
| aurora_postgres_master_username | Aurora Postgres Username for the master DB user |
Copy file name to clipboardExpand all lines: docs/terraform.md
+11
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,11 @@
6
6
| acm_primary_domain | A domain name for which the certificate should be issued | string | - | yes |
7
7
| acm_san_domains | A list of domains that should be SANs in the issued certificate | list |`<list>`| no |
8
8
| attributes | Additional attributes (e.g. `1`) | list |`<list>`| no |
9
+
| backup_enabled | Set to false to prevent the module from creating any resources | string | `` | no |
10
+
| backup_s3_access_key_name | Backup s3 user IAM access key name for storing in SSM. Default to aws_acces_key_id so chamber exports as AWS_ACCESS_KEY_ID, a standard AWS IAM ENV variable | string |`codefresh_backups_aws_access_key_id`| no |
11
+
| backup_s3_allowed_bucket_actions | List of actions to permit for backup s3 bucket | list |`<list>`| no |
12
+
| backup_s3_secret_key_name | Backup s3 user IAM secret key name for storing in SSM. Default to aws_secret_acces_key so chamber exports as AWS_SECRET_ACCESS_KEY, a standard AWS IAM ENV variable | string |`codefresh_backups_aws_secret_access_key`| no |
13
+
| backup_s3_user_enabled | Set to `true` to create an user with permission to access the backup s3 bucket | string | `` | no |
9
14
| chamber_format | Format to store parameters in SSM, for consumption with `chamber`| string |`/%s/%s`| no |
10
15
| chamber_service |`chamber` service name. See [chamber usage](https://github.com/segmentio/chamber#usage) for more details | string | `` | no |
11
16
| delimiter | Delimiter to be used between `namespace`, `stage`, `name` and `attributes`| string |`-`| no |
@@ -74,6 +79,12 @@
74
79
| aurora_postgres_master_hostname | Aurora Postgres DB Master hostname |
75
80
| aurora_postgres_master_username | Aurora Postgres Username for the master DB user |
description="List of actions to permit for backup_s3 bucket"
16
+
description="List of actions to permit for backup s3 bucket"
17
17
}
18
18
19
19
variable"backup_s3_access_key_name" {
20
20
type="string"
21
21
default="codefresh_backups_aws_access_key_id"
22
-
description="backup_s3 user IAM access key name for storing in SSM. Default to aws_acces_key_id so chamber exports as AWS_ACCESS_KEY_ID, a standard AWS IAM ENV variable"
22
+
description="Backup s3 user IAM access key name for storing in SSM. Default to aws_acces_key_id so chamber exports as AWS_ACCESS_KEY_ID, a standard AWS IAM ENV variable"
23
23
}
24
24
25
25
variable"backup_s3_secret_key_name" {
26
26
type="string"
27
27
default="codefresh_backups_aws_secret_access_key"
28
-
description="backup_s3 user IAM secret key name for storing in SSM. Default to aws_secret_acces_key so chamber exports as AWS_SECRET_ACCESS_KEY, a standard AWS IAM ENV variable "
28
+
description="Backup s3 user IAM secret key name for storing in SSM. Default to aws_secret_acces_key so chamber exports as AWS_SECRET_ACCESS_KEY, a standard AWS IAM ENV variable "
0 commit comments