diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml
index fbcb79b..50478eb 100644
--- a/.pre-commit-config.yaml
+++ b/.pre-commit-config.yaml
@@ -8,12 +8,24 @@ repos:
- id: check-vcs-permalinks
- id: forbid-new-submodules
- id: no-commit-to-branch
+ - id: check-byte-order-marker
+ - id: check-case-conflict
+ - id: check-json
+ - id: check-merge-conflict
+ - id: check-symlinks
+ - id: check-vcs-permalinks
+ - id: check-toml
+ - id: check-xml
+ - id: detect-private-key
+ - id: requirements-txt-fixer
+ - id: sort-simple-yaml
# Common errors
- id: end-of-file-fixer
- id: trailing-whitespace
args: [--markdown-linebreak-ext=md]
exclude: CHANGELOG.md
+
# - id: check-yaml
- id: check-merge-conflict
- id: check-executables-have-shebangs
@@ -38,7 +50,7 @@ repos:
# Terraform Hooks
- repo: https://github.com/antonbabenko/pre-commit-terraform
- rev: v1.96.1 # Get the latest from: https://github.com/antonbabenko/pre-commit-terraform/releases
+ rev: v1.97.3 # Get the latest from: https://github.com/antonbabenko/pre-commit-terraform/releases
hooks:
- id: terraform_fmt
args:
diff --git a/README.md b/README.md
index 33fa384..af3d848 100644
--- a/README.md
+++ b/README.md
@@ -40,7 +40,7 @@ sys 0m2.015s
| Name | Version |
|------|---------|
-| [aws](#provider\_aws) | 5.84.0 |
+| [aws](#provider\_aws) | 5.87.0 |
| [helm](#provider\_helm) | 2.17.0 |
| [kubernetes](#provider\_kubernetes) | 2.35.1 |
@@ -82,6 +82,7 @@ sys 0m2.015s
|------|-------------|
| [module\_name](#output\_module\_name) | The name of this module. |
| [module\_version](#output\_module\_version) | The version of this module. |
+| [operators\_namespace](#output\_operators\_namespace) | The namespace for the operators. |
| [rwo\_storage\_class](#output\_rwo\_storage\_class) | Kubernetes storage class that supports read/write once. |
| [rwx\_storage\_class](#output\_rwx\_storage\_class) | Kubernetes storage class that supports read/write many. |
diff --git a/outputs.tf b/outputs.tf
index d5e5656..fbea089 100644
--- a/outputs.tf
+++ b/outputs.tf
@@ -25,3 +25,12 @@ output "rwx_storage_class" {
description = "Kubernetes storage class that supports read/write many."
value = kubernetes_storage_class.efs_sc.metadata[0].name
}
+
+################################################################################
+# Operators
+################################################################################
+
+output "operators_namespace" {
+ description = "The namespace for the operators."
+ value = kubernetes_namespace.operators.metadata[0].name
+}