Skip to content

Commit 0578208

Browse files
fix(aws-eks-iam-role-group): Fix for 'Error: Invalid AWS Region: global'
1 parent 96830ea commit 0578208

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

modules/aws-eks-iam-role-group/main.tf

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@
33
* Defines AWS IAM group connected to Kubernetes Role.
44
*/
55

6-
provider "aws" {
7-
region = "global"
8-
}
96
data "aws_caller_identity" "current" {}
107

118
# ----------------------------------------------------------------------------------------------------------------------

modules/aws-eks-namespace/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ This module creates:
5454
| <a name="input_developer_kubernetes_role_rules_extra"></a> [developer\_kubernetes\_role\_rules\_extra](#input\_developer\_kubernetes\_role\_rules\_extra) | Additional Kubernetes role rules to add to developer group. | <pre>list(object({<br> resources = list(string)<br> api_groups = list(string)<br> verbs = list(string)<br> }))</pre> | `[]` | no |
5555
| <a name="input_developers"></a> [developers](#input\_developers) | List of IAM user names that will be added to developers group. | `list(string)` | `[]` | no |
5656
| <a name="input_developers_iam_policies"></a> [developers\_iam\_policies](#input\_developers\_iam\_policies) | { name: arn } map of policies to attach to developers group. | `map(string)` | `{}` | no |
57+
| <a name="input_ecr_arn_list"></a> [ecr\_arn\_list](#input\_ecr\_arn\_list) | ECR repository ARN list. If not provided there will be created ECR repo with the same name as namespace | `list(string)` | `[]` | no |
5758
| <a name="input_iam_path"></a> [iam\_path](#input\_iam\_path) | AWS IAM base path for all resources created for namespace | `string` | `null` | no |
5859
| <a name="input_labels"></a> [labels](#input\_labels) | Labels that are going to be attached to namespace | `map(string)` | `{}` | no |
5960
| <a name="input_namespace"></a> [namespace](#input\_namespace) | The name of namespace to be created on a cluster | `string` | n/a | yes |

0 commit comments

Comments
 (0)