Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
20 changes: 0 additions & 20 deletions eks/eks-blue/terraform.tfvars

This file was deleted.

20 changes: 0 additions & 20 deletions eks/eks-green/terraform.tfvars

This file was deleted.

4 changes: 0 additions & 4 deletions eks/network/terraform.tfvars

This file was deleted.

File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions auto-drive/db.tf → resources/terraform/auto-drive/db.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ data "aws_caller_identity" "current" {}
################################################################################

module "db" {
source = "../templates/terraform/aws/rds/"
source = "../../../templates/terraform/aws/rds/"

identifier = local.name

Expand Down Expand Up @@ -109,7 +109,7 @@ module "kms" {
}

module "db_automated_backups_replication" {
source = "../templates/terraform/aws/rds/modules/db_instance_automated_backups_replication"
source = "../../../templates/terraform/aws/rds/modules/db_instance_automated_backups_replication"

source_db_instance_arn = module.db.db_instance_arn
kms_key_arn = module.kms.key_arn
Expand Down
6 changes: 3 additions & 3 deletions auto-drive/main.tf → resources/terraform/auto-drive/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ locals {
################################################################################

module "vpc" {
source = "../templates/terraform/aws/vpc"
source = "../../../templates/terraform/aws/vpc"

name = "${local.name}-vpc"
cidr = var.vpc_cidr
Expand Down Expand Up @@ -134,7 +134,7 @@ data "aws_ami" "ubuntu_amd64" {
################################################################################

module "ec2_auto_drive" {
source = "../templates/terraform/aws/ec2"
source = "../../../templates/terraform/aws/ec2"

name = "${local.name}-backend"
count = var.auto_drive_instance_count
Expand Down Expand Up @@ -175,7 +175,7 @@ module "ec2_auto_drive" {
################################################################################

module "ec2_gateway" {
source = "../templates/terraform/aws/ec2"
source = "../../../templates/terraform/aws/ec2"
name = "${local.name}-gateway"
count = var.gateway_instance_count
ami = data.aws_ami.ubuntu_amd64.id
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module "devnet" {
source = "../../templates/terraform/network-primitives"
path_to_scripts = "../../templates/scripts"
path_to_configs = "../../templates/configs"
source = "../../../templates/terraform/network-primitives"
path_to_scripts = "../../../templates/scripts"
path_to_configs = "../../../templates/configs"
network_name = var.network_name

bootstrap-node-config = {
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module "gemini-3h" {
source = "../../templates/terraform/network-primitives-archive/gemini-3h"
path_to_scripts = "../../templates/terraform/network-primitives-archive/gemini-3h/scripts"
path_to_configs = "../../templates/terraform/network-primitives-archive/gemini-3h/configs"
source = "../../../templates/terraform/network-primitives-archive/gemini-3h"
path_to_scripts = "../../../templates/terraform/network-primitives-archive/gemini-3h/scripts"
path_to_configs = "../../../templates/terraform/network-primitives-archive/gemini-3h/configs"
network_name = var.network_name

bootstrap-node-config = {
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module "mainnet" {
source = "../../templates/terraform/network-primitives"
path_to_scripts = "../../templates/scripts"
path_to_configs = "../../templates/configs"
source = "../../../templates/terraform/network-primitives"
path_to_scripts = "../../../templates/scripts"
path_to_configs = "../../../templates/configs"
network_name = var.network_name

bootstrap-node-config = {
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module "taurus" {
source = "../../templates/terraform/network-primitives"
path_to_scripts = "../../templates/scripts"
path_to_configs = "../../templates/configs"
source = "../../../templates/terraform/network-primitives"
path_to_scripts = "../../../templates/scripts"
path_to_configs = "../../../templates/configs"
network_name = var.network_name

bootstrap-node-config = {
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module "telemetry_subspace_node" {
source = "../../templates/terraform/aws/ec2"
source = "../../../templates/terraform/aws/ec2"

ami = data.aws_ami.ubuntu_amd64.image_id
instance_type = var.instance_type
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module "telemetry_vpc" {
source = "../../terraform/aws/vpc"
source = "../../../templates/terraform/aws/vpc"

cidr_block = var.public_subnet_cidrs
enable_dns_support = true
Expand Down