Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Terraform error running commands with standard set up #338

Open
mikefox opened this issue Nov 28, 2023 · 0 comments
Open

Terraform error running commands with standard set up #338

mikefox opened this issue Nov 28, 2023 · 0 comments

Comments

@mikefox
Copy link
Contributor

mikefox commented Nov 28, 2023

I'm using the following Dockerfile to create a container that I can run control-tower commands in:

FROM --platform=linux/amd64 debian:buster

# Install Concourse stuff
RUN apt-get update && apt-get install -y wget \
                        build-essential \
                        zlib1g-dev \
                        ruby \
                        ruby-dev \
                        openssl \
                        libxslt1-dev \
                        libxml2-dev \
                        libssl-dev \
                        libreadline-dev \
                        libyaml-dev \
                        libsqlite3-dev \
                        sqlite3

RUN wget -O /bin/bosh https://github.com/cloudfoundry/bosh-cli/releases/download/v7.2.3/bosh-cli-7.2.3-linux-arm64 \
    && chmod u+x /bin/bosh


RUN wget -O /bin/ct https://github.com/EngineerBetter/control-tower/releases/download/0.32.0/control-tower-linux-amd64 \
    && chmod u+x /bin/ct

WORKDIR /app

ENTRYPOINT /bin/bash

However I'm receiving the following error message when I try to run the control-tower info command on an existing installation:

│ Error: Invalid legacy provider address
│
│ This configuration or its associated state refers to the unqualified provider "aws".
│
│ You must complete the Terraform 0.13 upgrade process before upgrading to later versions.

I should mention that the existing installation is running v7.0.0 of Bosh CLI and version 0.32.0 of control tower.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant