Skip to content

Commit

Permalink
Merge branch 'main' of github.com:ThoughtWorks-DPS/psk-aws-iam-profiles
Browse files Browse the repository at this point in the history
  • Loading branch information
ncheneweth committed Jun 14, 2024
2 parents 2dc90e9 + 528a988 commit af0f8a6
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 11 deletions.
8 changes: 4 additions & 4 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

module "PSKNonprodServiceAccount" {
source = "terraform-aws-modules/iam/aws//modules/iam-user"
version = "5.39.0"
version = "5.39.1"

create_user = var.is_state_account
name = "PSKNonprodServiceAccount"
Expand All @@ -22,7 +22,7 @@ module "PSKNonprodServiceAccount" {

module "PSKNonprodServiceAccountGroup" {
source = "terraform-aws-modules/iam/aws//modules/iam-group-with-assumable-roles-policy"
version = "5.39.0"
version = "5.39.1"

count = var.is_state_account ? 1 : 0
name = "PSKNonprodServiceAccountGroup"
Expand All @@ -41,7 +41,7 @@ module "PSKNonprodServiceAccountGroup" {

module "PSKProdServiceAccount" {
source = "terraform-aws-modules/iam/aws//modules/iam-user"
version = "5.39.0"
version = "5.39.1"

create_user = var.is_state_account
name = "PSKProdServiceAccount"
Expand All @@ -54,7 +54,7 @@ module "PSKProdServiceAccount" {

module "PSKProdServiceAccountGroup" {
source = "terraform-aws-modules/iam/aws//modules/iam-group-with-assumable-roles-policy"
version = "5.39.0"
version = "5.39.1"

count = var.is_state_account ? 1 : 0
name = "PSKProdServiceAccountGroup"
Expand Down
2 changes: 1 addition & 1 deletion psk-aws-control-plane-base-role.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

module "PSKControlPlaneBaseRole" {
source = "terraform-aws-modules/iam/aws//modules/iam-assumable-role"
version = "5.39.0"
version = "5.39.1"
create_role = true

role_name = "PSKControlPlaneBaseRole"
Expand Down
2 changes: 1 addition & 1 deletion psk-aws-iam-profiles-role.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

module "PSKIamProfilesRole" {
source = "terraform-aws-modules/iam/aws//modules/iam-assumable-role"
version = "5.39.0"
version = "5.39.1"
create_role = true

role_name = "PSKIamProfilesRole"
Expand Down
2 changes: 1 addition & 1 deletion psk-aws-platform-hosted-zones-role.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

module "PSKPlatformHostedZonesRole" {
source = "terraform-aws-modules/iam/aws//modules/iam-assumable-role"
version = "5.39.0"
version = "5.39.1"
create_role = true

role_name = "PSKPlatformHostedZonesRole"
Expand Down
2 changes: 1 addition & 1 deletion psk-aws-platform-observability-base-role.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

module "PSKPlatformObservabilityBaseRole" {
source = "terraform-aws-modules/iam/aws//modules/iam-assumable-role"
version = "5.39.0"
version = "5.39.1"
create_role = true

role_name = "PSKPlatformObservabilityBaseRole"
Expand Down
2 changes: 1 addition & 1 deletion psk-aws-platform-vpc-role.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

module "PSKPlatformVPCRole" {
source = "terraform-aws-modules/iam/aws//modules/iam-assumable-role"
version = "5.39.0"
version = "5.39.1"
create_role = true

role_name = "PSKPlatformVPCRole"
Expand Down
2 changes: 1 addition & 1 deletion psk-aws-platform-wan-role.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

module "PSKPlatformWANRole" {
source = "terraform-aws-modules/iam/aws//modules/iam-assumable-role"
version = "5.39.0"
version = "5.39.1"
create_role = true

role_name = "PSKPlatformWANRole"
Expand Down
6 changes: 6 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
]
}
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
pre-commit == 3.6.0
pre-commit ==3.7.1

0 comments on commit af0f8a6

Please sign in to comment.