Reputation: 3842
I'm developing some open source ARM templates using VScode and publishing code to GitHub. I'm wondering how do I effectively develop templates and corresponding parameters file while keeping my local data out of GitHub and having only generic files published. Example is parameters
file which while needed to be presented in Git with empty values but still required for me locally to be populated with data which is relevant only to my local debugging/deployment scenario.
Upvotes: 0
Views: 153
Reputation: 3842
Rename parameters file to your liking and add it to .ignore file, leave placeholder in it's place.
Upvotes: 1