Skip to content

Commit b15f912

Browse files
committed
Merge branch 'main' into feat/account_permissions_assignment
2 parents 1f680da + 6fd47e4 commit b15f912

File tree

31 files changed

+240
-9
lines changed

31 files changed

+240
-9
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

examples/assign-permissions-to-account/variables.tf renamed to examples/assign-users-and-groups-to-account/variables.tf

File renamed without changes.
File renamed without changes.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
locals {
2+
aws_region = "us-east-1"
3+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
module "sso_groups" {
2+
source = "../../modules/sso_groups/"
3+
4+
sso_groups = var.sso_groups
5+
user_groups_map = var.user_groups_map
6+
}

examples/create-sso-group-and-assign-users/outputs.tf

Whitespace-only changes.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
provider "aws" {
2+
region = local.aws_region
3+
}

0 commit comments

Comments
 (0)