Skip to content

Commit

Permalink
Merge pull request #12 from ministryofjustice/bugfix/issue-when-repli…
Browse files Browse the repository at this point in the history
…cation-is-not-required

bugfix/fix-issue-when-replication-is-not-required
  • Loading branch information
donmasters authored Jul 30, 2021
2 parents 8eb6e75 + 198b681 commit e4e1c4a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,8 @@ module "s3-bucket" {
| lifecycle_rule | Lifecycle rules | object | `null` | no |
| log_bucket | Bucket for server access logging, if applicable | string | "" | no |
| log_prefix | Prefix to use for server access logging, if applicable | string | "" | no |
| replication_role_arn | IAM Role ARN for replication. See below for more information | string | | yes |
| replication_role_arn | IAM Role ARN for replication. See below for more information (Required if | | | |
| | 'replication enabled' variable is set to true) | string | "" | depends |
| tags | Tags to apply to resources, where applicable | map | | yes |


Expand Down
1 change: 1 addition & 0 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ variable "log_prefix" {
variable "replication_role_arn" {
type = string
description = "Role ARN to access S3 and replicate objects"
default = ""
}

variable "tags" {
Expand Down

0 comments on commit e4e1c4a

Please sign in to comment.