From bf97577f24bb174f29c63d2f8dba4c7c6f72d539 Mon Sep 17 00:00:00 2001 From: aps831 Date: Sun, 28 Jul 2024 20:10:20 +0000 Subject: [PATCH] chore: update for v4.3.0 release [skip ci] --- .latest-release | 2 +- CHANGELOG.md | 14 ++++++++++++++ README.md | 9 ++++----- 3 files changed, 19 insertions(+), 6 deletions(-) diff --git a/.latest-release b/.latest-release index 51be872..9ca2398 100644 --- a/.latest-release +++ b/.latest-release @@ -1 +1 @@ -v4.2.0 +v4.3.0 diff --git a/CHANGELOG.md b/CHANGELOG.md index cdb8f50..c09542b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,12 +2,26 @@ All notable changes to this project will be documented in this file. +## [4.3.0] - 2024-07-28 + +### Features + +- Use gcloud storage vice gsutil + +### Build + +- Upgrade trunk + ## [4.2.0] - 2024-07-16 ### Features - Revert to using terraform wrote role for gcp +### Miscellaneous Tasks + +- Update for v4.2.0 release [skip ci] + ### Build - Upgrade trunk diff --git a/README.md b/README.md index 6a2ed1b..04e4839 100644 --- a/README.md +++ b/README.md @@ -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.2.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.3.0/aws-init.sh | bash -s -- --prefix ${prefix} --project ${project} --profile ${profile} --region ${region} --tag ${tag} ``` where @@ -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.2.0/aws-cleanup.sh | bash -s -- --prefix ${prefix} --project ${project} --profile ${profile} --region ${region} +curl -L https://raw.githubusercontent.com/aps831/terraform-bucket/v4.3.0/aws-cleanup.sh | bash -s -- --prefix ${prefix} --project ${project} --profile ${profile} --region ${region} ``` where @@ -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.2.0/gcp-init.sh | bash -s -- --account ${account} --gcpproject ${gcpproject} --region ${region} +curl -L https://raw.githubusercontent.com/aps831/terraform-bucket/v4.3.0/gcp-init.sh | bash -s -- --account ${account} --gcpproject ${gcpproject} ``` where @@ -46,7 +46,6 @@ where ```text account = GCP account email address gcpproject = GCP project name -region = GCP region (eg europe-west2) ``` Note that `gcpproject` and the storage bucket with name `${gcpproject}-terraform-state` must be globally unique. @@ -54,7 +53,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.2.0/gcp-cleanup.sh | bash -s -- --gcpproject ${gcpproject} +curl -L https://raw.githubusercontent.com/aps831/terraform-bucket/v4.3.0/gcp-cleanup.sh | bash -s -- --gcpproject ${gcpproject} ``` where