#atlantis (2022-03)
Discuss the Atlantis (<http://runatlantis.io | runatlantis.io>) |
**Archive: ** https://archive.sweetops.com/atlantis/
2022-03-17
@Erik Osterman (Cloud Posse) I seem to recall you guys used to run your version of Atlantis as a CI job instead of running it standalone. Are you still doing that, or did that pattern die out?
that died
and it was an ECS container that run atlantis
Yea, we’re not maintaining that fork
@jose.amengual recently was able to help get our patch into the atlantis core, so it’s not needed anymore
Are you guys still using Atlantis, or have you switched to one of the paid TACOs?
spacelift
Terraform module to provision Spacelift resources for cloud infrastructure automation
2022-03-20
2022-03-22
2022-03-24
Hello everyone! Is someone using Vault from Atlantis? I have Atlantis in a Docker container on an EC2 Instance in AWS, in the EC2 instance I have configured the Vault agent and mounted the vault-token in the Atlantis container, I am trying access Vault from Terraform with the Vault provider as follows:
provider "vault" {
skip_tls_verify = true
address = "https://<IP-ADDRESS>:8200/"
token = "~/.vault-token"
}
but when I do the Pull Request it gives me the following error:
running "/usr/local/bin/terraform plan -input=false -refresh -out \"/home/atlantis/.atlantis/repos/TEST_PROYECT/test-atlantis-repo/44/default/default.tfplan\"" in "/home/atlantis/.atlantis/repos/TEST_PROJECT/test-atlantis-repo/44/default": exit status 1
╷
│ Error: Error making API request.
│
│ URL: GET https://<IP-ADDRESS>:8200/v1/auth/token/lookup-self
│ Code: 400. Errors:
│
│ * error performing token check: failed to look up namespace from the token: no namespace
│
│ with provider["registry.terraform.io/hashicorp/vault"],
│ on main.tf line 8, in provider "vault":
│ 8: provider "vault" {
Namespaces are only used for Vault Enterprise and this is not the case, has anyone been able to implement it? thanks!
Atlantis is a tf wrapper
it runs the terraform binary
so if you run the TF manually on the Atlantis instance it should work there first before
if it works in terraform it will work in Atlantis
@Jonás Márquez were you able to figure this out? We’re looking at using the same provider.
2022-03-31
Hello guys!!! I’m one of the Atlantis maintainers and I just wanted to let you know that we just released a fix for the VCS status issue some of you have reported on our dev image docker pull [ghcr.io/runatlantis/atlantis:dev](http://ghcr.io/runatlantis/atlantis:dev)
Please test it and and report back, Thanks.
ah nvm, dev.
Whats different with the dev tag/branch?
Does this track current master?
we are going to make it more obvious soon but dev is going be changed to something like prerelease
and it will track master
and we will give it a month or two to make a base release
so we have time for people to try the new changes