Skip to content

Commit 04a77a9

Browse files
committed
Typo fix on addition to terraform bugs.
1 parent b28c8be commit 04a77a9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

terraform/apply.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ func ApplyAndGetOutputWithRetry(terraformPath string, vars map[string]string, lo
4242
if strings.Contains(output, TF_ERROR_DIFFS_DIDNT_MATCH_DURING_APPLY) {
4343
logger.Printf("Terraform apply failed with the error '%s'. %s\n", TF_ERROR_DIFFS_DIDNT_MATCH_DURING_APPLY, TF_ERROR_DIFFS_DIDNT_MATCH_DURING_APPLY_MSG)
4444
return ApplyAndGetOutput(terraformPath, vars, logger)
45-
else if strings.Contains(output, TF_ERROR_EIP_DOES_NOT_HAVE_ATTRIBUTE_ID) {
45+
} else if strings.Contains(output, TF_ERROR_EIP_DOES_NOT_HAVE_ATTRIBUTE_ID) {
4646
logger.Printf("Terraform apply failed with the error '%s'. %s\n", TF_ERROR_EIP_DOES_NOT_HAVE_ATTRIBUTE_ID, TF_ERROR_EIP_DOES_NOT_HAVE_ATTRIBUTE_ID_MSG)
4747
return ApplyAndGetOutput(terraformPath, vars, logger)
4848
} else {

0 commit comments

Comments
 (0)