-
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.
Merge pull request #195 from aztfmod/AL-2108
Component version updates for 2108
- Loading branch information
Showing
9 changed files
with
83 additions
and
28 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 |
---|---|---|
@@ -1,14 +1,14 @@ | ||
versionAzureCli=2.25.0 | ||
versionAzureCli=2.27.0 | ||
versionKubectl=1.21.2 | ||
versionGit=1:2.30.2-1ubuntu1 | ||
versionTflint=0.29.1 | ||
versionTflintazrs=0.10.1 | ||
versionVault=1.7.3 | ||
versionTflint=0.31.0 | ||
versionTflintazrs=0.12.0 | ||
versionVault=1.8.1 | ||
versionJq=1.6-2.1ubuntu1 | ||
versionDockerCompose=1.27.4 | ||
versionTfsec=0.40.6 | ||
versionDockerCompose=1.29.2 | ||
versionTfsec=0.57.1 | ||
versionTerraformDocs=0.14.1 | ||
versionAnsible=2.10.7-1 | ||
versionPacker=1.7.3 | ||
versionCheckov=2.0.228 | ||
versionPacker=1.7.4 | ||
versionCheckov=2.0.344 | ||
versionMssqlTools=17.7.1.1 |
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,7 +1,5 @@ | ||
1.0.1 | ||
1.0.0 | ||
1.0.4 | ||
1.0.3 | ||
0.15.5 | ||
0.14.11 | ||
0.14.10 | ||
0.13.7 | ||
0.13.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"files.eol": "\n", | ||
"editor.tabSize": 2, | ||
"terminal.integrated.scrollback": 32000, | ||
"terminal.integrated.profiles.linux": { | ||
"caf (rover)": { | ||
"path": "docker-compose", | ||
"args": ["-f", "rover_on_ssh_host.yml", "run", "-e", "ROVER_RUNNER=true", "--rm", "-w", "/tf/caf" ,"rover", "/bin/bash"], | ||
"overrideName": true | ||
} | ||
} |
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,37 @@ | ||
--- | ||
#------------------------------------------------------------------------------------------------------------- | ||
# Copyright (c) Microsoft Corporation. All rights reserved. | ||
# Licensed under the MIT License. See https://go.microsoft.com/fwlink/?linkid=2090316 for license information. | ||
#------------------------------------------------------------------------------------------------------------- | ||
|
||
# | ||
# Docker compose to open the rover in remote ssh shells | ||
# | ||
|
||
version: '3.7' | ||
services: | ||
rover: | ||
image: aztfmod/rover-preview:1.0.1-2107.200307 | ||
|
||
user: vscode | ||
|
||
labels: | ||
- "caf=Azure CAF" | ||
|
||
volumes: | ||
# This is where VS Code should expect to find your project's source code | ||
# and the value of "workspaceFolder" in .devcontainer/devcontainer.json | ||
- .:/tf/caf | ||
- volume-caf-vscode:/home/vscode | ||
- volume-caf-vscode-bashhistory:/commandhistory | ||
- ~/.ssh:/tmp/.ssh-localhost:ro | ||
- /var/run/docker.sock:/var/run/docker.sock | ||
|
||
# Overrides default command so things don't shut down after the process ends. | ||
command: /bin/sh -c "while sleep 1000; do :; done" | ||
|
||
volumes: | ||
volume-caf-vscode: | ||
labels: | ||
- "caf=Azure CAF" | ||
volume-caf-vscode-bashhistory: |
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