Skip to content

Commit

Permalink
Remove admin group
Browse files Browse the repository at this point in the history
* Now that we are using OIDC, we no longer need IAM groups/users
  • Loading branch information
Stretch96 committed Apr 24, 2024
1 parent 371bf93 commit a68dce8
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions terraform/modules/data/iam.tf
Original file line number Diff line number Diff line change
@@ -1,13 +1,3 @@
# IAM group with admin policy attached. Users manually created and added to group.
resource "aws_iam_group" "admins" {
name = "admins"
}

resource "aws_iam_group_policy_attachment" "admin" {
group = aws_iam_group.admins.name
policy_arn = "arn:aws:iam::aws:policy/AdministratorAccess"
}

resource "aws_iam_account_password_policy" "iam_password_policy" {
minimum_password_length = 14
require_lowercase_characters = true
Expand Down

0 comments on commit a68dce8

Please sign in to comment.