From 443b9efb44e8b872957fa80a73c37efa67aff8c4 Mon Sep 17 00:00:00 2001 From: reneenoble Date: Tue, 7 May 2024 13:05:40 +1000 Subject: [PATCH] Mark administratorLogin string as secure --- .cruft.json | 2 +- .github/workflows/tests.yml | 4 ++-- infra/core/database/postgresql/flexibleserver.bicep | 1 + 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.cruft.json b/.cruft.json index a784f75..3236eab 100644 --- a/.cruft.json +++ b/.cruft.json @@ -1,6 +1,6 @@ { "template": "https://github.com/Azure-Samples/Azure-Python-Standardization-Template-Generator", - "commit": "a8bbfb5f41e1b73129167cd91c50671ad604e206", + "commit": "a92760e38a54e1062e1950d3702372f404cd6a41", "checkout": null, "context": { "cookiecutter": { diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 07d17d2..ffdd708 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -30,9 +30,9 @@ jobs: if: matrix.os == 'macos-latest-xlarge' run: brew install postgresql@14 - name: Setup postgres - uses: ikalnytskyi/action-setup-postgres@v4 + uses: ikalnytskyi/action-setup-postgres@v6 - name: Setup python - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python_version }} diff --git a/infra/core/database/postgresql/flexibleserver.bicep b/infra/core/database/postgresql/flexibleserver.bicep index 3647524..2008d79 100644 --- a/infra/core/database/postgresql/flexibleserver.bicep +++ b/infra/core/database/postgresql/flexibleserver.bicep @@ -4,6 +4,7 @@ param tags object = {} param sku object param storage object +@secure() param administratorLogin string @secure() param administratorLoginPassword string