-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change cloudbuild trigger's args field to be a list.
Right now, cloudbuild trigger's args field expects a string, then splits that string on spaces to get the list the API wants. This doesn't do proper quote escaping, however, and creates problems, which led to hashicorp/terraform-provider-google#2101. This change turns it into a list instead of a string, so the user can take care of the parsing and escaping themselves. This is a breaking change, and should only go out with 2.0.0. We talked about the transition paths available to us, and this seemed the most reasonable.
- Loading branch information
1 parent
f6a2ac4
commit 6d7b1ab
Showing
2 changed files
with
13 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters