-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #16 from mineiros-io/mariux/tf13
Add support for Terraform v0.13.x
- Loading branch information
Showing
12 changed files
with
57 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1 @@ | ||
* @soerenmartius @mariux | ||
*.md @thenaturalist @soerenmartius @mariux |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,15 +2,18 @@ | |
|
||
[![Build Status][badge-build]][build-status] | ||
[![GitHub tag (latest SemVer)][badge-semver]][releases-github] | ||
[![license][badge-license]][apache20] | ||
[![Terraform Version][badge-terraform]][releases-terraform] | ||
[![AWS Provider Version][badge-tf-aws]][releases-aws-provider] | ||
[![Join Slack][badge-slack]][slack] | ||
|
||
# terraform-aws-iam-user | ||
|
||
A [Terraform](https://www.terraform.io) module for deploying and managing | ||
A [Terraform](https://www.terraform.io) base module for deploying and managing | ||
[IAM Users][IAM-User-Docs] on [Amazon Web Services][AWS]. | ||
|
||
***This module supports Terraform v0.13 as well as v0.12.20 and above | ||
and is compatible with the terraform AWS provider v3 as well as v2.0 and above.*** | ||
|
||
- [Module Features](#module-features) | ||
- [Getting Started](#getting-started) | ||
- [Module Argument Reference](#module-argument-reference) | ||
|
@@ -53,7 +56,7 @@ Most basic usage showing how to add three users and assigning two policies: | |
```hcl | ||
module "iam-users" { | ||
source = "mineiros-io/iam-user/aws" | ||
version = "~> 0.1.0" | ||
version = "~> 0.2.0" | ||
names = [ | ||
"user.one", | ||
|
@@ -223,6 +226,8 @@ Run `make help` to see details on each available target. | |
|
||
## License | ||
|
||
[![license][badge-license]][apache20] | ||
|
||
This module is licensed under the Apache License Version 2.0, January 2004. | ||
Please see [LICENSE] for full details. | ||
|
||
|
@@ -239,6 +244,9 @@ Copyright © 2020 [Mineiros GmbH][homepage] | |
[badge-terraform]: https://img.shields.io/badge/terraform-0.13%20and%200.12.20+-623CE4.svg?logo=terraform | ||
[badge-slack]: https://img.shields.io/badge/[email protected]?logo=slack | ||
|
||
[badge-tf-aws]: https://img.shields.io/badge/AWS-3%20and%202.0+-F8991D.svg?logo=terraform | ||
[releases-aws-provider]: https://github.com/terraform-providers/terraform-provider-aws/releases | ||
|
||
[build-status]: https://github.com/mineiros-io/terraform-aws-iam-user/actions | ||
[releases-github]: https://github.com/mineiros-io/terraform-aws-iam-user/releases | ||
[releases-terraform]: https://github.com/hashicorp/terraform/releases | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
terraform { | ||
required_version = "~> 0.12.20" | ||
required_version = ">= 0.12.20, < 0.14" | ||
|
||
required_providers { | ||
aws = "~> 2.0" | ||
aws = ">= 2.0, < 4.0" | ||
} | ||
} |