-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(terraform): streamline Helm installation and configuration
Consolidate Helm command logic into a local variable for clarity. Remove redundant EKS data sources and use kubeconfig JSON directly. Add providers.tf for managing provider versions. Remove versions.tf to centralize version management. Enhance temporary file handling and cleanup process for better resource management.
- Loading branch information
1 parent
54ca1a2
commit 91505b9
Showing
4 changed files
with
42 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
terraform { | ||
required_version = ">= 0.13.0" | ||
|
||
required_providers { | ||
null = { | ||
source = "hashicorp/null" | ||
version = ">= 3.0.0" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.