You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[*] Upgrade Terraspace: Are you using the latest version of Terraspace? This allows Terraspace to fix issues fast. There's an Upgrading Guide: https://terraspace.cloud/docs/misc/upgrading/
[*] Reproducibility: Are you reporting a bug others will be able to reproduce and not asking a question. If you're unsure or want to ask a question, do so on https://community.boltops.com
[*] Code sample: Have you put together a code sample to reproduce the issue and make it available? Code samples help speed up fixes dramatically. If it's an easily reproducible issue, then code samples are not needed. If you're unsure, please include a code sample.
terraspace should work with official image in devcontainer :)
Current Behavior
following documentation with demo project creation for Azure:
terraspace new project -p azurerm infra --examples
cd infra
terraspace up demo -y
terraspace down demo -y
not working :(
Step-by-step reproduction instructions
Use devcontainer with official docker image ghcr.io/boltops-tools/terraspace:ubuntu as devcontainer for Azure.
devcontainer.json
{
"name": "Terraspace",
"image": "ghcr.io/boltops-tools/terraspace:ubuntu",
"features": {
},
"customizations": {
"vscode": {
"extensions": [
"hashicorp.terraform"
]
}
}
}
Create test Terraspace project https://terraspace.cloud/docs/install/docker/azure/
terraspace new project -p azurerm infra --examples
Got error: Gem::Ext::BuildError: ERROR: Failed to build gem native extension.
apt install ruby-full build-essential
now terraspace new project -p azurerm infra --examples works
cd infra
terraspace up demo -y Building .terraspace-cache/eastus/dev/stacks/demo
Current directory: .terraspace-cache/eastus/dev/stacks/demo
Exception Errno::ECONNREFUSED: Failed to open TCP connection to 169.254.169.254:80 (Connection refused - connect(2) for "169.254.169.254" port 80)
Code Sample
Solution Suggestion
The text was updated successfully, but these errors were encountered:
Checklist
My Environment
I'm trying to use official docker image ghcr.io/boltops-tools/terraspace:ubuntu as devcontainer in VSCode for Azure.
I'm adding only az cli - https://learn.microsoft.com/en-us/cli/azure/install-azure-cli-linux?pivots=apt
Expected Behaviour
terraspace should work with official image in devcontainer :)
Current Behavior
following documentation with demo project creation for Azure:
terraspace new project -p azurerm infra --examples
cd infra
terraspace up demo -y
terraspace down demo -y
not working :(
Step-by-step reproduction instructions
devcontainer.json
{
"name": "Terraspace",
"image": "ghcr.io/boltops-tools/terraspace:ubuntu",
"features": {
},
"customizations": {
"vscode": {
"extensions": [
"hashicorp.terraform"
]
}
}
}
than
az login --use-device-code
terraspace new project -p azurerm infra --examples
Got error:
Gem::Ext::BuildError: ERROR: Failed to build gem native extension.
terraspace up demo -y
Building .terraspace-cache/eastus/dev/stacks/demo
Current directory: .terraspace-cache/eastus/dev/stacks/demo
Exception Errno::ECONNREFUSED: Failed to open TCP connection to 169.254.169.254:80 (Connection refused - connect(2) for "169.254.169.254" port 80)
Code Sample
Solution Suggestion
The text was updated successfully, but these errors were encountered: