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
| mfa_delete | A boolean that indicates that versions of S3 objects can only be deleted with MFA. ( Terraform cannot apply changes of this value; https://github.com/terraform-providers/terraform-provider-aws/issues/629 ) | string |`false`| no |
137
137
| name | Solution name, e.g. 'app' or 'jenkins' | string |`terraform`| no |
138
138
| namespace | Namespace, which could be your organization name or abbreviation, e.g. 'eg' or 'cp' | string | `` | no |
139
+
| prevent_unencrypted_uploads | Prevent uploads of unencrypted objects to S3 | string |`true`| no |
140
+
| profile | AWS profile name as set in the shared credentials file | string | `` | no |
139
141
| read_capacity | DynamoDB read capacity units | string |`5`| no |
140
142
| regex_replace_chars | Regex to replace chars with empty string in `namespace`, `environment`, `stage` and `name`. By default only hyphens, letters and digits are allowed, all other chars are removed | string |`/[^a-zA-Z0-9-]/`| no |
141
143
| region | AWS Region the S3 bucket should reside in | string | - | yes |
142
144
| restrict_public_buckets | Whether Amazon S3 should restrict public bucket policies for this bucket. | string |`false`| no |
145
+
| role_arn | The role to be assumed | string | `` | no |
143
146
| stage | Stage, e.g. 'prod', 'staging', 'dev', OR 'source', 'build', 'test', 'deploy', 'release' | string | `` | no |
@@ -291,15 +299,17 @@ Check out [our other projects][github], [follow us on twitter][twitter], [apply
291
299
292
300
### Contributors
293
301
294
-
|[![Andriy Knysh][aknysh_avatar]][aknysh_homepage]<br/>[Andriy Knysh][aknysh_homepage]|[![Erik Osterman][osterman_avatar]][osterman_homepage]<br/>[Erik Osterman][osterman_homepage]|[![Maarten van der Hoef][maartenvanderhoef_avatar]][maartenvanderhoef_homepage]<br/>[Maarten van der Hoef][maartenvanderhoef_homepage]|
295
-
|---|---|---|
302
+
|[![Andriy Knysh][aknysh_avatar]][aknysh_homepage]<br/>[Andriy Knysh][aknysh_homepage]|[![Erik Osterman][osterman_avatar]][osterman_homepage]<br/>[Erik Osterman][osterman_homepage]|[![Maarten van der Hoef][maartenvanderhoef_avatar]][maartenvanderhoef_homepage]<br/>[Maarten van der Hoef][maartenvanderhoef_homepage]|[![Vladimir][SweetOps_avatar]][SweetOps_homepage]<br/>[Vladimir][SweetOps_homepage]|
Copy file name to clipboardExpand all lines: docs/terraform.md
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,12 +17,19 @@
17
17
| mfa_delete | A boolean that indicates that versions of S3 objects can only be deleted with MFA. ( Terraform cannot apply changes of this value; https://github.com/terraform-providers/terraform-provider-aws/issues/629 ) | string |`false`| no |
18
18
| name | Solution name, e.g. 'app' or 'jenkins' | string |`terraform`| no |
19
19
| namespace | Namespace, which could be your organization name or abbreviation, e.g. 'eg' or 'cp' | string | `` | no |
20
+
| prevent_unencrypted_uploads | Prevent uploads of unencrypted objects to S3 | string |`true`| no |
21
+
| profile | AWS profile name as set in the shared credentials file | string | `` | no |
20
22
| read_capacity | DynamoDB read capacity units | string |`5`| no |
21
23
| regex_replace_chars | Regex to replace chars with empty string in `namespace`, `environment`, `stage` and `name`. By default only hyphens, letters and digits are allowed, all other chars are removed | string |`/[^a-zA-Z0-9-]/`| no |
22
24
| region | AWS Region the S3 bucket should reside in | string | - | yes |
23
25
| restrict_public_buckets | Whether Amazon S3 should restrict public bucket policies for this bucket. | string |`false`| no |
26
+
| role_arn | The role to be assumed | string | `` | no |
24
27
| stage | Stage, e.g. 'prod', 'staging', 'dev', OR 'source', 'build', 'test', 'deploy', 'release' | string | `` | no |
description="Regex to replace chars with empty string in `namespace`, `environment`, `stage` and `name`. By default only hyphens, letters and digits are allowed, all other chars are removed"
121
121
}
122
+
123
+
variable"prevent_unencrypted_uploads" {
124
+
type="string"
125
+
default="true"
126
+
description="Prevent uploads of unencrypted objects to S3"
127
+
}
128
+
129
+
variable"profile" {
130
+
default=""
131
+
description="AWS profile name as set in the shared credentials file"
132
+
}
133
+
134
+
variable"role_arn" {
135
+
default=""
136
+
description="The role to be assumed"
137
+
}
138
+
139
+
variable"terraform_backend_config_file_name" {
140
+
default="terraform.tf"
141
+
description="Name of terraform backend config file"
142
+
}
143
+
144
+
variable"terraform_backend_config_file_path" {
145
+
default=""
146
+
description="The path to terrafrom project directory"
0 commit comments