We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9bb03c5 commit 57f8b2aCopy full SHA for 57f8b2a
google-beta/services/lustre/resource_lustre_instance_sweeper.go
@@ -57,12 +57,10 @@ func listAndActionLustreInstance(action sweeper.ResourceAction) error {
57
var configs []*tpgresource.ResourceDataMock
58
t := &testing.T{}
59
billingId := envvar.GetTestBillingAccountFromEnv(t)
60
- // Default single config
61
- intermediateValues := []map[string]string{
62
- {
63
- "region": "us-central1",
64
- },
65
- }
+ // Build URL substitution maps individually to ensure proper formatting
+ intermediateValues := make([]map[string]string, 1)
+ intermediateValues[0] = map[string]string{}
+ intermediateValues[0]["location"] = "us-central1-a"
66
67
// Create configs from intermediate values
68
for _, values := range intermediateValues {
0 commit comments