File tree Expand file tree Collapse file tree 8 files changed +0
-31
lines changed
accounts-and-permission-assignments Expand file tree Collapse file tree 8 files changed +0
-31
lines changed Original file line number Diff line number Diff line change @@ -223,10 +223,8 @@ module "aws_organizations_and_sso" {
223
223
224
224
| Name | Description | Type | Default | Required |
225
225
| ------| -------------| ------| ---------| :--------:|
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 |
227
226
| <a name =" input_enable_sso " ></a > [ enable\_ sso] ( #input\_ enable\_ sso ) | Enable AWS SSO | ` bool ` | ` true ` | no |
228
227
| <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 |
230
228
| <a name =" input_sso_permission_sets " ></a > [ sso\_ permission\_ sets] ( #input\_ sso\_ permission\_ sets ) | AWS SSO Permission sets | ` any ` | ` {} ` | no |
231
229
232
230
## Outputs
Original file line number Diff line number Diff line change @@ -8,8 +8,6 @@ module "aws_organizations_and_sso" {
8
8
source = "chris-qa-org/organzation-and-sso/aws"
9
9
version = "1.0.1"
10
10
11
- region = "eu-west-2"
12
-
13
11
sso_permission_sets = {
14
12
"AdministratorAccess" = {
15
13
description = "Administrator Access",
Original file line number Diff line number Diff line change @@ -2,8 +2,6 @@ module "aws_organizations_and_sso" {
2
2
source = " chris-qa-org/organzation-and-sso/aws"
3
3
version = " 1.0.1"
4
4
5
- region = " eu-west-2"
6
-
7
5
sso_permission_sets = {
8
6
" AdministratorAccess" = {
9
7
description = " Administrator Access" ,
Original file line number Diff line number Diff line change @@ -8,8 +8,6 @@ module "aws_organizations_and_sso" {
8
8
source = "chris-qa-org/organzation-and-sso/aws"
9
9
version = "1.0.1"
10
10
11
- region = "eu-west-2"
12
-
13
11
organization_config = {
14
12
units = {
15
13
"my-org-unit" = {
Original file line number Diff line number Diff line change @@ -2,8 +2,6 @@ module "aws_organizations_and_sso" {
2
2
source = " chris-qa-org/organzation-and-sso/aws"
3
3
version = " 1.0.1"
4
4
5
- region = " eu-west-2"
6
-
7
5
organization_config = {
8
6
units = {
9
7
" my-org-unit" = {
Original file line number Diff line number Diff line change 1
1
locals {
2
- region = var. region
3
2
sso_permission_sets = var. sso_permission_sets
4
3
organization_config = var. organization_config
5
4
enable_sso = var. enable_sso
6
- default_tags = var. default_tags
7
5
}
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
- variable "region" {
2
- description = " AWS Region"
3
- type = string
4
- }
5
-
6
1
variable "sso_permission_sets" {
7
2
description = " AWS SSO Permission sets"
8
3
type = any
@@ -23,11 +18,3 @@ variable "enable_sso" {
23
18
type = bool
24
19
default = true
25
20
}
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
- }
You can’t perform that action at this time.
0 commit comments