@@ -2,26 +2,27 @@ import { Node } from "../types/types";
22
33// General Values
44export const general = {
5- domain : "your_domain_here.com" , // Replace this with your own public domain
6- github_username : "YourUsernameHere" , // Replace this with your own GitHub Username
7- public_hosted_zone : "Z016942938TFLEH1J2FS1" , // Replace this with your own Route53 Hosted Zone ID
8- bucket_name : "cloud-homelab-oidc-auth" , // Replace this with your own S3 Bucket Name
5+ domain : "your_domain_here" , // Replace this with your own public domain
6+ github_username : "your_github_username" , // Replace this with your own GitHub Username
7+ repo_name : "your_github_repo_name" , // Replace this with your own GitHub Repo Name
8+ public_hosted_zone : "your_hosted_zone_id" , // Replace this with your own Route53 Hosted Zone ID
9+ aws_account_id : "your_aws_account_id" , // Replace this with your own AWS Account ID
10+ bucket_name : "oidc_bucket_name" , // Replace this with your own S3 Bucket Name
911 domain_comment : "Internal DNS HostedZone for the cloud cluster" ,
1012} ;
1113
1214// Global Tags
1315export const tags = {
1416 environment : "homelab" ,
1517 project_name : "cloud-homelab" ,
16- repo_name : "homelab-kube-cluster" ,
17- github_url : `https://github.com/${ general . github_username } /homelab-kube-cluster` ,
18+ github_url : `https://github.com/${ general . github_username } /${ general . repo_name } ` ,
1819} ;
1920
2021// Cloud Setup Values
2122export const cloud_auth = {
2223 aws_region : "us-east-1" ,
2324 aws_profile : "default" ,
24- aws_account_id : "001122334455" , // Replace this with your own AWS Account ID
25+ aws_account_id : general . aws_account_id ,
2526} ;
2627
2728export const user_data = {
@@ -151,11 +152,11 @@ export const amis: {
151152 // https://cloud-images.ubuntu.com/locator/ec2/, search '22.04 us-east-1'
152153 bastion_amd64 : "ami-0a5f04cdf7758e9f0" , // Ubuntu Linux 22.04
153154 // amd64 / 64-Bit x64 Architecture
154- masters_amd64 : "ami-0fd267b9f1b72a285 " , // v1.6.0
155- workers_amd64 : "ami-0fd267b9f1b72a285 " , // v1.6.0
155+ masters_amd64 : "ami-09360283b6eec5d54 " , // v1.6.4
156+ workers_amd64 : "ami-09360283b6eec5d54 " , // v1.6.4
156157 // arm64 / 64-Bit ARM Architecture
157- masters_arm64 : "ami-0874ca2dcfec825b4 " , // v1.6.0
158- workers_arm64 : "ami-0874ca2dcfec825b4 " , // v1.6.0
158+ masters_arm64 : "ami-06adfbb8b54041f82 " , // v1.6.4
159+ workers_arm64 : "ami-06adfbb8b54041f82 " , // v1.6.4
159160 } ,
160161} ;
161162
0 commit comments