diff --git a/live/prod/database/terragrunt.hcl b/live/prod/database/terragrunt.hcl index 388dfb5..6c1089c 100644 --- a/live/prod/database/terragrunt.hcl +++ b/live/prod/database/terragrunt.hcl @@ -25,7 +25,7 @@ inputs = { yc_token = get_env("YC_TOKEN", "") yc_service_account_key_file = get_env("YC_SERVICE_ACCOUNT_KEY_FILE", "") yc_cloud_id = get_env("YC_CLOUD_ID", "") - yc_folder_id = get_env("YC_STAGE_FOLDER_ID", get_env("YC_FOLDER_ID", "")) + yc_folder_id = get_env("YC_PROD_FOLDER_ID", get_env("YC_FOLDER_ID", "")) kubeconfig_path = get_env("KUBECONFIG", "") kube_context = get_env("KUBE_CONTEXT", "") } diff --git a/live/prod/namespace/terragrunt.hcl b/live/prod/namespace/terragrunt.hcl index 5a4235e..ed8567a 100644 --- a/live/prod/namespace/terragrunt.hcl +++ b/live/prod/namespace/terragrunt.hcl @@ -25,7 +25,7 @@ inputs = { yc_token = get_env("YC_TOKEN", "") yc_service_account_key_file = get_env("YC_SERVICE_ACCOUNT_KEY_FILE", "") yc_cloud_id = get_env("YC_CLOUD_ID", "") - yc_folder_id = get_env("YC_STAGE_FOLDER_ID", get_env("YC_FOLDER_ID", "")) + yc_folder_id = get_env("YC_PROD_FOLDER_ID", get_env("YC_FOLDER_ID", "")) kubeconfig_path = get_env("KUBECONFIG", "") kube_context = get_env("KUBE_CONTEXT", "") } diff --git a/live/prod/s3/terragrunt.hcl b/live/prod/s3/terragrunt.hcl index ee25658..09db01f 100644 --- a/live/prod/s3/terragrunt.hcl +++ b/live/prod/s3/terragrunt.hcl @@ -21,12 +21,12 @@ terraform { inputs = { buckets = local.env_config.buckets - folder_id = get_env("YC_STAGE_FOLDER_ID", get_env("YC_FOLDER_ID", "")) + folder_id = get_env("YC_PROD_FOLDER_ID", get_env("YC_FOLDER_ID", "")) yc_token = get_env("YC_TOKEN", "") yc_service_account_key_file = get_env("YC_SERVICE_ACCOUNT_KEY_FILE", "") yc_cloud_id = get_env("YC_CLOUD_ID", "") - yc_folder_id = get_env("YC_STAGE_FOLDER_ID", get_env("YC_FOLDER_ID", "")) + yc_folder_id = get_env("YC_PROD_FOLDER_ID", get_env("YC_FOLDER_ID", "")) kubeconfig_path = get_env("KUBECONFIG", "") kube_context = get_env("KUBE_CONTEXT", "") } diff --git a/live/prod/secrets/terragrunt.hcl b/live/prod/secrets/terragrunt.hcl index 5fb27de..ca950b4 100644 --- a/live/prod/secrets/terragrunt.hcl +++ b/live/prod/secrets/terragrunt.hcl @@ -152,7 +152,7 @@ inputs = { yc_token = get_env("YC_TOKEN", "") yc_service_account_key_file = get_env("YC_SERVICE_ACCOUNT_KEY_FILE", "") yc_cloud_id = get_env("YC_CLOUD_ID", "") - yc_folder_id = get_env("YC_STAGE_FOLDER_ID", get_env("YC_FOLDER_ID", "")) + yc_folder_id = get_env("YC_PROD_FOLDER_ID", get_env("YC_FOLDER_ID", "")) kubeconfig_path = get_env("KUBECONFIG", "") kube_context = get_env("KUBE_CONTEXT", "") }