Skip to content

Commit

Permalink
added comments
Browse files Browse the repository at this point in the history
  • Loading branch information
zachreborn committed Jan 29, 2024
1 parent ff60ad3 commit 274b115
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 0 deletions.
8 changes: 8 additions & 0 deletions modules/aws/iam/policy/main.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
##############################
# Provider Configuration
##############################

terraform {
required_version = ">= 1.0.0"
required_providers {
Expand All @@ -8,6 +12,10 @@ terraform {
}
}

##############################
# Policy Configuration
##############################

resource "aws_iam_policy" "this" {
description = var.description
name = var.name
Expand Down
4 changes: 4 additions & 0 deletions modules/aws/iam/saml_provider/main.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
##############################
# Provider Configuration
##############################

terraform {
required_version = ">= 1.0.0"
required_providers {
Expand Down
4 changes: 4 additions & 0 deletions modules/aws/iam/user/main.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
##############################
# Provider Configuration
##############################

terraform {
required_version = ">= 1.0.0"
required_providers {
Expand Down
4 changes: 4 additions & 0 deletions modules/aws/iam/user_policy_attachment/main.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
##############################
# Provider Configuration
##############################

terraform {
required_version = ">= 1.0.0"
required_providers {
Expand Down

0 comments on commit 274b115

Please sign in to comment.