Skip to content

Commit dd1e2a2

Browse files
chore(master): release 4.3.0 (#119)
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
1 parent 3df2ae8 commit dd1e2a2

File tree

8 files changed

+23
-7
lines changed

8 files changed

+23
-7
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,22 @@ The format is based on
77
and this project adheres to
88
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
99

10+
## [4.3.0](https://github.com/terraform-google-modules/terraform-google-service-accounts/compare/v4.2.3...v4.3.0) (2024-08-06)
11+
12+
13+
### Features
14+
15+
* Add iam_email and env_vars output to simple-sa submodule ([#122](https://github.com/terraform-google-modules/terraform-google-service-accounts/issues/122)) ([ae592d2](https://github.com/terraform-google-modules/terraform-google-service-accounts/commit/ae592d233a85ce04b9cacc56d04862231cdebc43))
16+
* add simple SA module for managing SA and project IAM ([#118](https://github.com/terraform-google-modules/terraform-google-service-accounts/issues/118)) ([ee1516b](https://github.com/terraform-google-modules/terraform-google-service-accounts/commit/ee1516b78c7ec0c0671c1cc0a5f4cdad8c1de6a4))
17+
18+
19+
### Bug Fixes
20+
21+
* **deps:** bump golang.org/x/net from 0.17.0 to 0.23.0 in /modules/key-distributor/files/function ([#115](https://github.com/terraform-google-modules/terraform-google-service-accounts/issues/115)) ([5550304](https://github.com/terraform-google-modules/terraform-google-service-accounts/commit/55503040ab6a03375ef84c576f624c0eae9e9d6e))
22+
* **deps:** update key-distrubutor to GO v1.20 ([#124](https://github.com/terraform-google-modules/terraform-google-service-accounts/issues/124)) ([cbaa4b1](https://github.com/terraform-google-modules/terraform-google-service-accounts/commit/cbaa4b1a81a3fe5f2bd885879307f6d945131fd3))
23+
* Fix output "id" in "simple-sa" module ([#125](https://github.com/terraform-google-modules/terraform-google-service-accounts/issues/125)) ([3df2ae8](https://github.com/terraform-google-modules/terraform-google-service-accounts/commit/3df2ae83d69f3d1ffb87c7ff227c417076b8587f))
24+
* Update the format of "id" output in the "simple-sa" module ([#123](https://github.com/terraform-google-modules/terraform-google-service-accounts/issues/123)) ([4e586a7](https://github.com/terraform-google-modules/terraform-google-service-accounts/commit/4e586a7a44151078329972b38d553748ee000983))
25+
1026
## [4.2.3](https://github.com/terraform-google-modules/terraform-google-service-accounts/compare/v4.2.2...v4.2.3) (2024-04-12)
1127

1228

metadata.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ spec:
2323
source:
2424
repo: https://github.com/terraform-google-modules/terraform-google-service-accounts
2525
sourceType: git
26-
version: 4.2.3
26+
version: 4.3.0
2727
actuationTool:
2828
type: Terraform
2929
version: '>= 0.13'

modules/key-distributor/metadata.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ spec:
2323
source:
2424
repo: https://github.com/terraform-google-modules/terraform-google-service-accounts
2525
sourceType: git
26-
version: 4.2.3
26+
version: 4.3.0
2727
actuationTool:
2828
type: Terraform
2929
version: '>= 0.13'

modules/key-distributor/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ terraform {
3333
}
3434

3535
provider_meta "google" {
36-
module_name = "blueprints/terraform/terraform-google-service-accounts:key-distributor/v4.2.3"
36+
module_name = "blueprints/terraform/terraform-google-service-accounts:key-distributor/v4.3.0"
3737
}
3838

3939
}

modules/simple-sa/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Basic usage of this submodule is as follows:
99
```hcl
1010
module "sa" {
1111
source = "terraform-google-modules/service-accounts/google//modules/simple-sa"
12-
version = "~> 4.0"
12+
version = "~> 4.3"
1313
1414
project_id = "<PROJECT ID>"
1515
name = "sa-name"

modules/simple-sa/metadata.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ spec:
2525
repo: https://github.com/terraform-google-modules/terraform-google-service-accounts.git
2626
sourceType: git
2727
dir: /modules/simple-sa
28-
version: 4.2.3
28+
version: 4.3.0
2929
actuationTool:
3030
flavor: Terraform
3131
version: ">= 0.13.0"

modules/simple-sa/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@ terraform {
2525
}
2626

2727
provider_meta "google" {
28-
module_name = "blueprints/terraform/terraform-google-service-accounts:simple-sa/v4.2.3"
28+
module_name = "blueprints/terraform/terraform-google-service-accounts:simple-sa/v4.3.0"
2929
}
3030
}

versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ terraform {
2525
}
2626

2727
provider_meta "google" {
28-
module_name = "blueprints/terraform/terraform-google-service-accounts/v4.2.3"
28+
module_name = "blueprints/terraform/terraform-google-service-accounts/v4.3.0"
2929
}
3030

3131
}

0 commit comments

Comments
 (0)