Skip to content

Commit

Permalink
chore(release): update docs for 4.0.1 [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
aps831 committed Sep 16, 2023
1 parent a2510cb commit 3aa0c0e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
## [](https://github.com/aps831/terraform-bucket/compare/v4.0.0...v) (2023-09-16)
## [](https://github.com/aps831/terraform-bucket/compare/v4.0.1...v) (2023-09-16)

### [4.0.1](https://github.com/aps831/terraform-bucket/compare/v4.0.0...v4.0.1) (2023-09-16)


### Bug Fixes

* replace bucket acl with bucket policy on logging bucket ([a2510cb](https://github.com/aps831/terraform-bucket/commit/a2510cba2d20fbe394bd96b2308a8ddb0b2a4be8))

## [4.0.0](https://github.com/aps831/terraform-bucket/compare/v3.0.0...v4.0.0) (2023-09-16)

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ This repository provides scripts for bootstrapping buckets (and in the case of G
To initialise an AWS bucket use:

```bash
curl -L https://raw.githubusercontent.com/aps831/terraform-bucket/v4.0.0/aws-init.sh | bash -s -- --prefix ${prefix} --project ${project} --profile ${profile} --region ${region} --tag ${tag}
curl -L https://raw.githubusercontent.com/aps831/terraform-bucket/v4.0.1/aws-init.sh | bash -s -- --prefix ${prefix} --project ${project} --profile ${profile} --region ${region} --tag ${tag}
```

where
Expand All @@ -23,7 +23,7 @@ Note that the S3 bucket with name `${prefix}-${project}-terraform-state` must be
To cleanup an AWS bucket use:

```bash
curl -L https://raw.githubusercontent.com/aps831/terraform-bucket/v4.0.0/aws-cleanup.sh | bash -s -- --prefix ${prefix} --project ${project} --profile ${profile} --region ${region}
curl -L https://raw.githubusercontent.com/aps831/terraform-bucket/v4.0.1/aws-cleanup.sh | bash -s -- --prefix ${prefix} --project ${project} --profile ${profile} --region ${region}
```

where
Expand All @@ -38,7 +38,7 @@ region = AWS region (eg eu-west-2)
To initialise a GCP project and bucket use:

```bash
curl -L https://raw.githubusercontent.com/aps831/terraform-bucket/v4.0.0/gcp-init.sh | bash -s -- --account ${account} --gcpproject ${gcpproject} --region ${region}
curl -L https://raw.githubusercontent.com/aps831/terraform-bucket/v4.0.1/gcp-init.sh | bash -s -- --account ${account} --gcpproject ${gcpproject} --region ${region}
```

where
Expand All @@ -54,7 +54,7 @@ Note that `gcpproject` and the storage bucket with name `${gcpproject}-terraform
To cleanup a GCP project and bucket use:

```bash
curl -L https://raw.githubusercontent.com/aps831/terraform-bucket/v4.0.0/gcp-cleanup.sh | bash -s -- --gcpproject ${gcpproject}
curl -L https://raw.githubusercontent.com/aps831/terraform-bucket/v4.0.1/gcp-cleanup.sh | bash -s -- --gcpproject ${gcpproject}
```

where
Expand Down

0 comments on commit 3aa0c0e

Please sign in to comment.