-
Notifications
You must be signed in to change notification settings - Fork 146
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #311 from aztfmod/tfe_agents_msub
Terraform Cloud Agent support and multi-sub bootstrap
- Loading branch information
Showing
29 changed files
with
1,438 additions
and
391 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
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 |
---|---|---|
@@ -1,4 +1,3 @@ | ||
1.2.9 | ||
1.1.9 | ||
1.3.9 | ||
1.4.2 | ||
1.4.6 |
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
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
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
USERNAME=vscode | ||
versionAzdo=2.186.1 | ||
versionGithubRunner=2.277.1 | ||
versionTfc=0.1.8 | ||
versionTfc=1.5.0 | ||
versionGitlab=13.8.0 |
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
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,12 @@ | ||
#!/bin/bash | ||
|
||
if [[ -v ARM_CLIENT_SECRET ]]; then | ||
echo "Logging with the service principal secret flow. ($ARM_CLIENT_ID)" | ||
az login --service-principal -u $ARM_CLIENT_ID -p $ARM_CLIENT_SECRET -t $ARM_TENANT_ID --allow-no-subscriptions >/dev/null >&1 | ||
fi | ||
|
||
if [[ -v ARM_SUBSCRIPTION_ID ]]; then | ||
echo "Set the subscription to $ARM_SUBSCRIPTION_ID." | ||
az account set -s $ARM_SUBSCRIPTION_ID | ||
az account show -o json | jq | ||
fi |
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,4 @@ | ||
#!/bin/bash | ||
|
||
echo "Closing Azure cli sessions." | ||
az account clear |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,18 @@ | ||
# Base image tools version | ||
extensionsAzureCli="resource-graph" | ||
versionDockerCompose="2.9.0" | ||
versionGolang="1.19.5" | ||
versionGolang="1.20.3" | ||
versionKubectl="1.25.4" | ||
versionPacker="1.8.3" | ||
versionPacker="1.8.6" | ||
versionPowershell="7.2.7" | ||
versionTerraformDocs="0.16.0" | ||
versionVault="1.12.3" | ||
versionVault="1.13.2" | ||
versionAnsible="2.14.4" | ||
|
||
# Agents versions | ||
USERNAME="vscode" | ||
versionAzdo="3.217.0" | ||
versionGithubRunner="2.302.1" | ||
versionAzdo="3.220.0" | ||
versionGithubRunner="2.304.0" | ||
versionGitlab="15.9.1" | ||
versionTfc="1.6.0" | ||
versionTfc="1.8.0" | ||
|
Oops, something went wrong.