-
Notifications
You must be signed in to change notification settings - Fork 147
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add support for TF013 beta 3 * Remove workspace and transition settings to devcontainer * Add --clone-launchpad * Remove --clone-error writing to stdout download progress * Remove launchpad command Remove launchpad landing zone from rover * Cleanup dockerfile * Refactor the command logic for more scalability * Fix a destroy condition * Fix command conditions + cleanup * Fix rover clone * Fix a CI destroy condition * #56 * Add ssh server for Azure aci * Updating port for Azure bastion * Fix sshd port to 22 for aci * Regenerate sshd keys if missing * Make the sshd.sh executable * Run sshd in non-root container * Fix docker in non-root mode * Upgrade tools version Cleanup variables * Remove password for ssh Change ssh server config * Add terraform 0.12.29 * Add 0.13.0-rc1 docker image * Update changelog.md * Update changelog.md * Update rover to version 13 GA * Create .gitattributes * Improvements to support multi layers and sub * Fix plugin-cache creation * Fix plug-in folder creation * Add rover import and state list Add build local image * Fix minor upgrade for azcli and tfdoc * Add Ansible * Adding codespaces support (#72) * Updating tools version * Add ansible * Multi-layer support for 0.4 * Add -var-folder support * Remove constrain to run vscode with logged-in user * Fix execution with msi * Set Tenant_ID when using MSI * fix ARM_TENANT_ID * Add support for Packer * Add yq to parse yaml files * Add rover version verification in vscode * Update devcontainer version * Update yaml to addess Github env variable change * Fix merge in dockerfile * Fix tfsec * Fix a merge issue with ansible * Fix a permission denied in vscode * Set TF_VAR_tenant_id when executed by non user * Fix environment variable for launchpad init * Update rover verify function * Remove version verification in pipelines * Add support for multiple var-folder parameters * Hotfix to prevent duplicates when using var-folder nultiple times * Update docker-compose.yml * Add git pre-commit * Update terraform to 0.13.4 Update AzureCli to 2.14.0 * Update ci * Update vnext trigger Co-authored-by: Arnaud Lheureux <arnaudlh@users.noreply.github.com> Co-authored-by: lolorol <lalesle@microsoft.com>
- Loading branch information
1 parent
3e8e3b2
commit 9a050f1
Showing
11 changed files
with
226 additions
and
176 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,8 @@ | |
services: | ||
rover: | ||
image: aztfmod/roverdev:vnext | ||
|
||
user:vscode | ||
|
||
labels: | ||
- "caf=Azure CAF" | ||
|
||
|
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,10 +1,11 @@ | ||
versionTerraform=0.13.3 | ||
versionAzureCli=2.12.1 | ||
versionTerraform=0.13.5 | ||
versionAzureCli=2.14.0 | ||
versionKubectl=v1.18.6 | ||
versionGit=2.27.0 | ||
versionTflint=v0.18.0 | ||
versionJq=1.6 | ||
versionDockerCompose=1.25.5 | ||
versionDockerCompose=1.27.3 | ||
versionTfsec=v0.27.0 | ||
versionTerraformDocs=v0.10.1 | ||
versionAnsible=2.10 | ||
versionAnsible=2.9.13 | ||
versionPacker=1.6.4 |
This file was deleted.
Oops, something went wrong.
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,21 @@ | ||
# See http://pre-commit.com for more information | ||
# See http://pre-commit.com/hooks.html for more hooks | ||
repos: | ||
- repo: git://github.com/antonbabenko/pre-commit-terraform | ||
rev: v1.43.0 | ||
hooks: | ||
- id: terraform_fmt | ||
# - id: terraform_docs | ||
# - id: terraform_tflint | ||
# - id: terraform_tfsec | ||
- repo: git://github.com/pre-commit/pre-commit-hooks | ||
rev: v3.3.0 | ||
hooks: | ||
- id: check-merge-conflict | ||
- id: trailing-whitespace | ||
- id: check-yaml | ||
- id: check-added-large-files | ||
# - repo: git://github.com/markdownlint/markdownlint | ||
# rev: v0.9.0 | ||
# hooks: | ||
# - id: markdownlint |
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 |
---|---|---|
|
@@ -24,6 +24,7 @@ services: | |
- versionTfsec | ||
- versionTerraformDocs | ||
- versionAnsible | ||
- versionPacker | ||
|
||
volumes: | ||
- ..:/tf | ||
|
Oops, something went wrong.