From 75951875b012328515f4455b60a2b993b32362e3 Mon Sep 17 00:00:00 2001 From: Marcin Maciaszczyk Date: Fri, 22 Nov 2024 09:21:52 +0100 Subject: [PATCH] azure login --- .github/workflows/e2e.yaml | 34 +++++++++------------------------- 1 file changed, 9 insertions(+), 25 deletions(-) diff --git a/.github/workflows/e2e.yaml b/.github/workflows/e2e.yaml index d89abe8e..9bbfc49c 100644 --- a/.github/workflows/e2e.yaml +++ b/.github/workflows/e2e.yaml @@ -11,7 +11,7 @@ env: GOBIN: /home/runner/go/bin jobs: plural-up-gcp: - name: Test `plural up` / GCP + name: plural up / GCP runs-on: ubuntu-latest steps: - name: Checkout @@ -32,30 +32,8 @@ jobs: run: terraform --version - name: Print Google Cloud CLI version run: gcloud --version - plural-up-aws: - name: Test `plural up` / AWS - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v3 - with: - fetch-depth: 0 - - name: Setup Go - uses: actions/setup-go@v4.1.0 - with: - go-version-file: go.mod - - name: Add GOBIN to PATH - run: echo $GOBIN >> $GITHUB_PATH - - name: Setup Plural CLI - run: make install-cli - - name: Print Plural CLI version - run: plural version - - name: Print Terraform version - run: terraform --version - - name: Print AWS CLI version - run: aws --version plural-up-azure: - name: Test `plural up` / Azure + name: plural up / Azure runs-on: ubuntu-latest steps: - name: Checkout @@ -75,4 +53,10 @@ jobs: - name: Print Terraform version run: terraform --version - name: Print Azure CLI version - run: az --version \ No newline at end of file + run: az --version + - name: Login to Azure + uses: azure/login@v2 + with: + client-id: ${{ secrets.E2E_AZURE_CLIENT_ID }} + tenant-id: ${{ secrets.E2E_AZURE_TENANT_ID }} + subscription-id: ${{ secrets.E2E_AZURE_SUBSCRIPTION_ID }} \ No newline at end of file