stackql-deploy 2.2.0

Infrastructure-as-code framework for declarative cloud resource management using StackQL
import File from '@site/src/components/File';
import LeftAlignedTable from '@site/src/components/LeftAlignedTable';

<LeftAlignedTable type="string[]" required={false} />

Protected variables from the `resource`, these variables are masked in the output logs.  Protected variables are a subset of `exports`.  Protected export values are masked wherever they appear in log output, including rendered queries shown using `--dry-run` or `--show-queries` and `DEBUG` level logging.  To mask sensitive input values (rather than exported values), see `global.protected` and `resource.prop.protected`.

<File name='stackql_manifest.yml'>

```yaml {8}
resources:
  - name: container_registry
...
    exports:
      - acr_url
      - acr_username
      - acr_password
    protected:
      - acr_password
```

</File>