feat: Added automatic script copying functionality
This commit is contained in:
@@ -61,6 +61,7 @@ module "dev" {
|
||||
network_ip_range = var.network_ip_range
|
||||
bootstrap_script = local.bootstrap_script
|
||||
ssh_private_key_path = var.ssh_private_key_path
|
||||
deploy_user = var.deploy_user
|
||||
runner_count = var.dev_runner_count
|
||||
|
||||
# module.network.id alone doesn't guarantee the subnet exists yet, and a server
|
||||
@@ -82,6 +83,7 @@ module "prod" {
|
||||
network_ip_range = var.network_ip_range
|
||||
bootstrap_script = local.bootstrap_script
|
||||
ssh_private_key_path = var.ssh_private_key_path
|
||||
deploy_user = var.deploy_user
|
||||
|
||||
depends_on = [module.network]
|
||||
}
|
||||
@@ -96,6 +98,7 @@ module "vpn" {
|
||||
allowed_ssh_source_ips = var.allowed_ssh_source_ips
|
||||
bootstrap_script = local.bootstrap_script
|
||||
ssh_private_key_path = var.ssh_private_key_path
|
||||
deploy_user = var.deploy_user
|
||||
}
|
||||
|
||||
module "dns" {
|
||||
|
||||
Reference in New Issue
Block a user