-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* started refactor. Updated Tests to be a bit more sane * refactored structure. Added interface for discovery to implement multiple IaaS * tidy & fmt * spliited out aws related discovery bits into own package, added azure package, added stdout output for debugging * removed rg flag * udpated struct structures.. Intrduced v2 tag flag for seamless upgrades of runnign deployments * Updated aws to support v2 tags. restructured code for bettter testability. * Update readme.md * udpated flag descriptions * made sure to aggregate output. before second iaas parsed would have overwritten results of first * nested range caused duplicate entries in scrape discovery. removed unnecessary loop * removed unnecessary code * moved validation of output args in front of loop
- Loading branch information
1 parent
c0a5e81
commit ed94989
Showing
22 changed files
with
937 additions
and
484 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
AZURE_CREDS=$(vault read -format=json azure/creds/azure-deployer) && export AZURE_CLIENT_ID=$(echo $AZURE_CREDS | jq .data.client_id -r) && export AZURE_CLIENT_SECRET=$(echo $AZURE_CREDS | jq .data.client_secret -r) |
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
Oops, something went wrong.