Skip to content

Init #10

Merged
merged 38 commits into from
Sep 15, 2025
Merged

Init #10

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
ce9c503
Add comprehensive EKS Cluster Template roadmap and configuration files
arnol377 Apr 4, 2025
737c5f9
Refactor namespace definitions and add GitHub Actions workflows variable
arnol377 Apr 4, 2025
a3e4476
Implement GitHub Actions workflow triggers and enhance Terraform conf…
arnol377 Apr 8, 2025
c2fd5b3
Enhance README and add Terraform module for EKS cluster deployment wi…
arnol377 Apr 8, 2025
1139704
Update versions.tf to include required provider versions for Terrafor…
arnol377 Apr 10, 2025
fbf89c9
Remove outdated test files and add new validation and workflow trigge…
arnol377 Apr 14, 2025
7e9ae4e
Update GitHub server URL and refactor related configurations for EKS …
arnol377 Apr 14, 2025
7d6c616
Refactor module configurations to enable dynamic management of extra …
arnol377 Apr 14, 2025
9908cfb
updating gitignore
arnol377 Apr 14, 2025
d2c9e34
Remove obsolete Terraform module and provider cache files to clean up…
arnol377 Apr 14, 2025
49343ca
removing test workflow
arnol377 Apr 14, 2025
9335f0b
Remove GitHub token variable and references to streamline configuration
arnol377 Apr 14, 2025
d5dc8cb
Update terraform-validate.yaml
arnol377 Apr 14, 2025
0b2d76c
Remove mock GitHub token from workflow trigger configuration
arnol377 Apr 14, 2025
2f2ffb0
updating
arnol377 Apr 14, 2025
0ed813e
removing varfiles
arnol377 Apr 14, 2025
fd83dd1
Remove unused GitHub module and provider references
arnol377 Apr 14, 2025
fce4f1e
Merge branch 'main' of github.e.it.census.gov:SCT-Engineering/terrafo…
arnol377 Apr 14, 2025
fab6793
removign data dirs
arnol377 Apr 14, 2025
1463480
removing TEMPLATE_SHA
arnol377 Apr 14, 2025
ac87e11
Merge branch 'main' of github.e.it.census.gov:SCT-Engineering/terrafo…
arnol377 Apr 14, 2025
d0bb442
Merge branch 'main' of github.e.it.census.gov:SCT-Engineering/terrafo…
arnol377 Apr 14, 2025
bb7367a
reemoving varfiles
arnol377 Apr 14, 2025
555ac1c
Merge branch 'main' of github.e.it.census.gov:SCT-Engineering/terrafo…
arnol377 Apr 14, 2025
4f26e92
initi
Aug 27, 2025
3773704
adding docs
Aug 27, 2025
6596ff7
Add README template for EKS cluster configuration
Aug 27, 2025
e1ebcd8
Enhance README and examples for EKS cluster management
Aug 27, 2025
2d1a997
Fix formatting of runs-on value in GitHub Actions workflow
Sep 4, 2025
94a5183
Refactor README and ROADMAP for clarity; update Terraform configurati…
Sep 4, 2025
bf499a0
Update EKS cluster configuration with new account details
Sep 10, 2025
1694ff2
Update main.tf
arnol377 Sep 10, 2025
7df2ccd
Update EKS deployment configuration: change region to us-gov-east-1 a…
Sep 10, 2025
70c4768
Refactor repository and cluster configuration: unify naming and updat…
Sep 11, 2025
f5e7c5f
Update cluster name assignment in locals.tf and add default.json file
Sep 11, 2025
89e2838
Update GitHub repository source URL in main.tf
Sep 11, 2025
9ca1513
Remove commented-out AWS provider and GitHub token configuration; add…
Sep 15, 2025
8de691b
Merge branch 'main' into init
arnol377 Sep 15, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 0 additions & 10 deletions examples/basic/main.tf
Original file line number Diff line number Diff line change
@@ -1,13 +1,3 @@
provider "aws" {
}

data "aws_secretsmanager_secret_version" "github_token" {
secret_id = "/eks-cluster-deployment/github_token"
}

provider "github" {
token = data.aws_secretsmanager_secret_version.github_token.secret_string
}

module "eks_deployment" {
source = "../../"
Expand Down
2 changes: 2 additions & 0 deletions examples/basic/providers.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
provider "aws" {
}
Loading