Skip to content

Commit d82f750

Browse files
committed
Fix module name
1 parent da12e49 commit d82f750

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

README.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,27 +10,28 @@ Offensive Terraform module which creates an IAM user and an access key then atta
1010

1111
## Usage
1212
```
13-
module "terraform-aws-iam-create-user-persistence" {
14-
source = "offensive-terraform/terraform-aws-iam-create-user-persistence/aws"
13+
module "iam-create-user-persistence" {
14+
source = "offensive-terraform/iam-create-user-persistence/aws"
15+
version = "0.1.0"
1516
16-
user_name = "test"
17-
policy_arn = "arn:aws:iam::aws:policy/AdministratorAccess"
17+
user_name = "hack-the-planet"
18+
policy_arn = "arn:aws:iam::aws:policy/AdministratorAccess"
1819
}
1920
2021
output "aws_iam_user" {
21-
value = module.terraform-aws-iam-create-user-persistence.aws_iam_user
22+
value = module.iam-create-user-persistence.aws_iam_user
2223
}
2324
2425
output "aws_iam_user_policy_arn" {
25-
value = module.terraform-aws-iam-create-user-persistence.aws_iam_user_policy_arn
26+
value = module.iam-create-user-persistence.aws_iam_user_policy_arn
2627
}
2728
2829
output "access_key" {
29-
value = module.terraform-aws-iam-create-user-persistence.access_key
30+
value = module.iam-create-user-persistence.access_key
3031
}
3132
3233
output "secret_key" {
33-
value = module.terraform-aws-iam-create-user-persistence.secret_key
34+
value = module.iam-create-user-persistence.secret_key
3435
}
3536
```
3637
## Author

0 commit comments

Comments
 (0)