Skip to content

Commit 221876d

Browse files
committed
Remove unneeded variable
1 parent 2a60d19 commit 221876d

File tree

4 files changed

+0
-7
lines changed

4 files changed

+0
-7
lines changed

README.md

-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ module "organizational-units" {
2828
| Name | Description | Type | Default | Required |
2929
|------|-------------|:----:|:-----:|:-----:|
3030
| aws\_profile | AWS profile in local credentials file that has rights to master account | string | - | yes |
31-
| aws\_region | AWS region | string | `us-east-1` | no |
3231
| ou\_list | List of organizational unit to manage. These will be top level under root | string | - | yes |
3332

3433
## Outputs

examples/basic/main.tf

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
module "example" {
22
source = "../../"
33
aws_profile = "${var.aws_profile}"
4-
aws_region = "${var.aws_region}"
54
ou_list = "${var.ou_list}"
65
}

resource-plan-graph.png

-10.2 KB
Loading

variables.tf

-5
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,6 @@ variable "aws_profile" {
22
description = "AWS profile in local credentials file that has rights to master account"
33
}
44

5-
variable "aws_region" {
6-
description = "AWS region"
7-
default = "us-east-1"
8-
}
9-
105
variable "ou_list" {
116
description = "List of organizational unit to manage. These will be top level under root"
127
}

0 commit comments

Comments
 (0)