Skip to content
This repository has been archived by the owner on Feb 1, 2024. It is now read-only.

Commit

Permalink
Merges origin/provider-removal (pull request #9)
Browse files Browse the repository at this point in the history
  • Loading branch information
danvaida committed Sep 10, 2020
2 parents 93014af + 2556ac0 commit a33d173
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Check the [examples](examples) directory.

| Name | Version |
|------|---------|
| aws | ~> 2.49.0 |
| aws | n/a |

## Inputs

Expand Down
5 changes: 5 additions & 0 deletions examples/simple/main.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
provider "aws" {
version = "~> 2.49.0"
region = "eu-central-1"
}

module "iam_ses_user_enabled" {
source = "../../"
user_name = "testing-iam-ses-user"
Expand Down
5 changes: 0 additions & 5 deletions main.tf
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
provider "aws" {
version = "~> 2.49.0"
region = "eu-central-1"
}

resource "aws_iam_user" "this" {
count = var.enabled ? 1 : 0
name = var.user_name
Expand Down

0 comments on commit a33d173

Please sign in to comment.