Skip to content

Add fourTheorem users #11

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
87 changes: 86 additions & 1 deletion aws/management/global/organizations/iam_identity_center_sso.tf
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,86 @@ resource "aws_identitystore_user" "bob" {
}
}

resource "aws_identitystore_user" "luciano" {
identity_store_id = local.identity_store_id

display_name = "Luciano Mammino"
user_name = "luciano"

name {
given_name = "Luciano"
family_name = "Mammino"
}

emails {
value = "[email protected]"
}
}

resource "aws_identitystore_user" "peter" {
identity_store_id = local.identity_store_id

display_name = "Peter Elger"
user_name = "peter"

name {
given_name = "Peter"
family_name = "Elger"
}

emails {
value = "[email protected]"
}
}

resource "aws_identitystore_user" "eoin" {
identity_store_id = local.identity_store_id

display_name = "Eoin Shanaghy"
user_name = "eoin"

name {
given_name = "Eoin"
family_name = "Shanaghy"
}

emails {
value = "[email protected]"
}
}

resource "aws_identitystore_user" "michael" {
identity_store_id = local.identity_store_id

display_name = "Michael Twomey"
user_name = "michael"

name {
given_name = "Michael"
family_name = "Twomey"
}

emails {
value = "[email protected]"
}
}

resource "aws_identitystore_user" "fiona" {
identity_store_id = local.identity_store_id

display_name = "Fiona McKenna"
user_name = "fiona"

name {
given_name = "Fiona"
family_name = "McKenna"
}

emails {
value = "[email protected]"
}
}

# Groups
resource "aws_identitystore_group" "super_admin" {
display_name = "Super Admin"
Expand Down Expand Up @@ -78,10 +158,15 @@ locals {
bob = aws_identitystore_user.bob.user_id
}
security = {
bob = aws_identitystore_user.bob.user_id
bob = aws_identitystore_user.bob.user_id
luciano = aws_identitystore_user.luciano.user_id
peter = aws_identitystore_user.peter.user_id
eoin = aws_identitystore_user.eoin.user_id
michael = aws_identitystore_user.michael.user_id
}
finance = {
conor = aws_identitystore_user.conor.user_id
fiona = aws_identitystore_user.fiona.user_id
bob = aws_identitystore_user.bob.user_id
}
}
Expand Down