Skip to content

Commit f2beb25

Browse files
committed
Add Finance Team
1 parent 8335b1e commit f2beb25

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
@@ -108,6 +108,22 @@ resource "aws_identitystore_user" "michael" {
108108
}
109109
}
110110

111+
resource "aws_identitystore_user" "fiona" {
112+
identity_store_id = local.identity_store_id
113+
114+
display_name = "Fiona McKenna"
115+
user_name = "fiona"
116+
117+
name {
118+
given_name = "Fiona"
119+
family_name = "McKenna"
120+
}
121+
122+
emails {
123+
124+
}
125+
}
126+
111127
# Groups
112128
resource "aws_identitystore_group" "super_admin" {
113129
display_name = "Super Admin"
@@ -150,6 +166,7 @@ locals {
150166
}
151167
finance = {
152168
conor = aws_identitystore_user.conor.user_id
169+
fiona = aws_identitystore_user.fiona.user_id
153170
bob = aws_identitystore_user.bob.user_id
154171
}
155172
}

0 commit comments

Comments
 (0)