Skip to content

Commit 8335b1e

Browse files
committed
Add another team member
1 parent 2cd408c commit 8335b1e

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

aws/management/global/organizations/iam_identity_center_sso.tf

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,22 @@ resource "aws_identitystore_user" "eoin" {
9292
}
9393
}
9494

95+
resource "aws_identitystore_user" "michael" {
96+
identity_store_id = local.identity_store_id
97+
98+
display_name = "Michael Twomey"
99+
user_name = "michael"
100+
101+
name {
102+
given_name = "Michael"
103+
family_name = "Twomey"
104+
}
105+
106+
emails {
107+
108+
}
109+
}
110+
95111
# Groups
96112
resource "aws_identitystore_group" "super_admin" {
97113
display_name = "Super Admin"
@@ -130,6 +146,7 @@ locals {
130146
luciano = aws_identitystore_user.luciano.user_id
131147
peter = aws_identitystore_user.peter.user_id
132148
eoin = aws_identitystore_user.eoin.user_id
149+
michael = aws_identitystore_user.michael.user_id
133150
}
134151
finance = {
135152
conor = aws_identitystore_user.conor.user_id

0 commit comments

Comments
 (0)