Skip to content

Commit 718c506

Browse files
Update Key Vault name to dbatoolsci-runners-keyvault
Changed the Key Vault name from 'dbatoolsci' to 'dbatoolsci-runners-keyvault' in both the GitHub Actions workflow and Terraform variables to ensure consistency and correct resource referencing.
1 parent 12133d8 commit 718c506

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/vmss-deploy.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ jobs:
3535
echo "Resource group dbatools-ci-runners already exists"
3636
fi
3737
38-
if ! az keyvault show --name dbatoolsci --resource-group dbatools-ci-runners &>/dev/null; then
39-
echo "Creating Key Vault dbatoolsci..."
40-
az keyvault create --name dbatoolsci --resource-group dbatools-ci-runners --location eastus
38+
if ! az keyvault show --name dbatoolsci-runners-keyvault --resource-group dbatools-ci-runners &>/dev/null; then
39+
echo "Creating Key Vault dbatoolsci-runners-keyvault..."
40+
az keyvault create --name dbatoolsci-runners-keyvault --resource-group dbatools-ci-runners --location eastus
4141
else
42-
echo "Key Vault dbatoolsci already exists"
42+
echo "Key Vault dbatoolsci-runners-keyvault already exists"
4343
fi
4444
4545
- name: Extract Azure credentials for Terraform

gh-runners/variables.tfvars

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ location = "eastus"
33
vmss_name = "dbatools-runner-vmss"
44
image_resource_group = "dbatools-ci-images"
55
image_name = "dbatools-golden-image"
6-
keyvault_name = "dbatoolsci"
6+
keyvault_name = "dbatoolsci-runners-keyvault"
77
min_instances = 0
88
max_instances = 3
99
github_organization = "dataplat"

0 commit comments

Comments
 (0)