Patrick Decat
Patrick Decat
Sorry, meant `public.ecr.aws/sam/build-python3.9`. This is an official AWS image: https://docs.aws.amazon.com/serverless-application-model/latest/developerguide/serverless-image-repositories.html
Even though the performance issue https://github.com/hashicorp/terraform/issues/25889 was closed by https://github.com/hashicorp/terraform/pull/26577 (as already mentioned in https://github.com/hashicorp/terraform-provider-aws/issues/15580#issuecomment-713507480), increasing the `ruleGroupRootStatementSchemaLevel` constant from 3 to 5 still heavily slows acceptance tests down (approximately...
Until the performance issue with such recursive schemas is actually resolved in terraform core, and the limit can be raised or completely removed, I see two options moving forward: ###...
Same [issue](https://github.com/fbradyirl/openwrt-luci-rpc/actions/runs/648723692) with `env` in job `strategy`: ```yaml name: Python package on: [push, pull_request] env: target_python_version: 3.8 jobs: test: runs-on: ubuntu-latest strategy: max-parallel: 5 matrix: python-version: [3.7, "${{env.target_python_version}}"] steps: -...
Bonus points to allow referencing such variables in `env_path` too. :)
Awesome, thanks @jdx!
Gitlab's container registry supports OCI pretty well, I'm using it for hosting one of my custom Steampipe plugins.
Marked as draft as notification actions no longer work when targeting Android 12+ https://developer.android.com/about/versions/12/behavior-changes-12#notification-trampolines
`pycolorio` is reportedly malware: https://blog.sonatype.com/malware-monthly-december-2022
Hi @rpattcorner, In our use case, role chaining is accomplished using native AWS CLI features, e.g.: ``` [profile base-adfs-profile] credential_process=aws-adfs login --region=us-east-1 --role-arn=arn:aws:iam::1234567891234:role/example-role --adfs-host=adfs.example.com --stdout [profile chained-profile] role_arn = arn:aws:iam::2345678912345:role/my-role...