File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ func FormatArgs(options *Options, args ...string) []string {
5151 planFileSupported := slices .Contains (TerraformCommandsWithPlanFileSupport , commandType )
5252
5353 // Include -var and -var-file flags unless we're running 'apply' with a plan file
54- includeVars := commandType != "apply" || options .PlanFilePath ! = ""
54+ includeVars := commandType != "apply" || options .PlanFilePath = = ""
5555
5656 terraformArgs = append (terraformArgs , args ... )
5757
@@ -249,7 +249,7 @@ func mapToHclString(m map[string]interface{}) string {
249249 keyValuePairs := []string {}
250250
251251 for key , value := range m {
252- keyValuePair := fmt .Sprintf (`"%q" = %q ` , key , toHclString (value , true ))
252+ keyValuePair := fmt .Sprintf (`%q = %s ` , key , toHclString (value , true ))
253253 keyValuePairs = append (keyValuePairs , keyValuePair )
254254 }
255255
You can’t perform that action at this time.
0 commit comments