Skip to content

Releases: ministryofjustice/cloud-platform-terraform-s3-bucket

3.3

16 Aug 12:17
ca4a2f1
Compare
Choose a tag to compare

3.2

29 Apr 11:14
f897b8d
Compare
Choose a tag to compare
3.2

This removes the need for the aws_region variable.

Providers now need to be defined outside of the module, and specified at module invocation.

The example now comes with two extra provider, one dedicated to eu-west-1 (ireland) and another to eu-west-2 (london).
The right provider to use has to be selected when the module is called, by using the following syntax :

module "example_team_s3_bucket" {
  ...
  providers = {
    # Can be either "aws.london" or "aws.ireland"
    aws = "aws.ireland"
  }

3.1

16 Apr 15:57
4d0fb45
Compare
Choose a tag to compare
3.1
  • Introduce user_policy variable which allows overriding the default IAM user policy (#11)

3.0

16 Apr 10:16
e192916
Compare
Choose a tag to compare
3.0
  • Allow custom bucket policies (#10)
  • Default to eu-west-2 for the bucket region.

2.0

19 Mar 10:28
327d0ee
Compare
Choose a tag to compare
2.0

An extra variable has been added to the module: aws-s3-region.
This allows an S3 bucket to be created in a different region than the rest of the terraform resources.

1.0

03 Oct 09:28
8e87b3a
Compare
Choose a tag to compare
1.0
Merge pull request #4 from ministryofjustice/permissions

Revisited IAM policy