Skip to content
This repository has been archived by the owner on Oct 6, 2023. It is now read-only.

Commit

Permalink
Formatting,
Browse files Browse the repository at this point in the history
  • Loading branch information
phiroict committed Nov 28, 2019
1 parent 51f5966 commit bc00b96
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions examples/role-policy/main.tf
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
module "example" {
source = "../../role-policy"

policy_name = "ExamplePolicy"
policy_sid = "ExamplePolicyActions"
policy_name = "ExamplePolicy"
policy_sid = "ExamplePolicyActions"
policy_description = "Example policy for testing"

policy_actions = [
Expand Down
12 changes: 6 additions & 6 deletions examples/user-group/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ resource "aws_iam_group" "test_group" {
}

module "example" {
create_user= true
create_user = true
create_iam_user_login_profile = true
source = "../../user-group"
name = "test_user2"
user_groups = ["${aws_iam_group.test_group.id}"]
pgp_key = "keybase:phiroict"
create_iam_access_key = true
source = "../../user-group"
name = "test_user2"
user_groups = ["${aws_iam_group.test_group.id}"]
pgp_key = "keybase:phiroict"
create_iam_access_key = true
}

output "pgp_message_key" {
Expand Down

0 comments on commit bc00b96

Please sign in to comment.