Skip to content

Commit f87a6f9

Browse files
committed
Remove provider config from module
1 parent f37b999 commit f87a6f9

File tree

8 files changed

+0
-31
lines changed

8 files changed

+0
-31
lines changed

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -223,10 +223,8 @@ module "aws_organizations_and_sso" {
223223

224224
| Name | Description | Type | Default | Required |
225225
|------|-------------|------|---------|:--------:|
226-
| <a name="input_default_tags"></a> [default\_tags](#input\_default\_tags) | Resource tags to apply across all resources | `map(string)` | <pre>{<br> "project": "terraform-aws-organization-and-sso"<br>}</pre> | no |
227226
| <a name="input_enable_sso"></a> [enable\_sso](#input\_enable\_sso) | Enable AWS SSO | `bool` | `true` | no |
228227
| <a name="input_organization_config"></a> [organization\_config](#input\_organization\_config) | Organization configuration | `any` | <pre>{<br> "units": {}<br>}</pre> | no |
229-
| <a name="input_region"></a> [region](#input\_region) | AWS Region | `string` | n/a | yes |
230228
| <a name="input_sso_permission_sets"></a> [sso\_permission\_sets](#input\_sso\_permission\_sets) | AWS SSO Permission sets | `any` | `{}` | no |
231229

232230
## Outputs

examples/accounts-and-permission-assignments/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ module "aws_organizations_and_sso" {
88
source = "chris-qa-org/organzation-and-sso/aws"
99
version = "1.0.1"
1010
11-
region = "eu-west-2"
12-
1311
sso_permission_sets = {
1412
"AdministratorAccess" = {
1513
description = "Administrator Access",

examples/accounts-and-permission-assignments/main.tf

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@ module "aws_organizations_and_sso" {
22
source = "chris-qa-org/organzation-and-sso/aws"
33
version = "1.0.1"
44

5-
region = "eu-west-2"
6-
75
sso_permission_sets = {
86
"AdministratorAccess" = {
97
description = "Administrator Access",

examples/existing-account-import/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ module "aws_organizations_and_sso" {
88
source = "chris-qa-org/organzation-and-sso/aws"
99
version = "1.0.1"
1010
11-
region = "eu-west-2"
12-
1311
organization_config = {
1412
units = {
1513
"my-org-unit" = {

examples/existing-account-import/main.tf

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@ module "aws_organizations_and_sso" {
22
source = "chris-qa-org/organzation-and-sso/aws"
33
version = "1.0.1"
44

5-
region = "eu-west-2"
6-
75
organization_config = {
86
units = {
97
"my-org-unit" = {

locals.tf

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
locals {
2-
region = var.region
32
sso_permission_sets = var.sso_permission_sets
43
organization_config = var.organization_config
54
enable_sso = var.enable_sso
6-
default_tags = var.default_tags
75
}

provider.tf

Lines changed: 0 additions & 6 deletions
This file was deleted.

variables.tf

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
1-
variable "region" {
2-
description = "AWS Region"
3-
type = string
4-
}
5-
61
variable "sso_permission_sets" {
72
description = "AWS SSO Permission sets"
83
type = any
@@ -23,11 +18,3 @@ variable "enable_sso" {
2318
type = bool
2419
default = true
2520
}
26-
27-
variable "default_tags" {
28-
description = "Resource tags to apply across all resources"
29-
type = map(string)
30-
default = {
31-
project = "terraform-aws-organization-and-sso"
32-
}
33-
}

0 commit comments

Comments
 (0)