We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8335b1e commit f2beb25Copy full SHA for f2beb25
aws/management/global/organizations/iam_identity_center_sso.tf
@@ -108,6 +108,22 @@ resource "aws_identitystore_user" "michael" {
108
}
109
110
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
+ value = "[email protected]"
124
125
+}
126
127
# Groups
128
resource "aws_identitystore_group" "super_admin" {
129
display_name = "Super Admin"
@@ -150,6 +166,7 @@ locals {
150
166
151
167
finance = {
152
168
conor = aws_identitystore_user.conor.user_id
169
+ fiona = aws_identitystore_user.fiona.user_id
153
170
bob = aws_identitystore_user.bob.user_id
154
171
155
172
0 commit comments