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

Commit

Permalink
Linted repo
Browse files Browse the repository at this point in the history
  • Loading branch information
rdunn-Hypr committed Nov 28, 2019
1 parent 8fe7ada commit 7a68b33
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 10 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
14 changes: 7 additions & 7 deletions examples/user-group/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ 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" {
value = "${module.example.keybase_password_pgp_message}"
}
}
1 change: 0 additions & 1 deletion role-policy/vars.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ variable "policy_description" {
default = ""
}


variable "policy_sid" {
description = "An ID for the policy statement. It must be alphanumeric characters only"
}
Expand Down

0 comments on commit 7a68b33

Please sign in to comment.