https://github.com/infrablocks/docker-open-policy-agent-aws
Open Policy Agent images for AWS.
https://github.com/infrablocks/docker-open-policy-agent-aws
Last synced: over 1 year ago
JSON representation
Open Policy Agent images for AWS.
- Host: GitHub
- URL: https://github.com/infrablocks/docker-open-policy-agent-aws
- Owner: infrablocks
- License: mit
- Created: 2022-11-21T14:47:28.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2025-03-12T15:59:13.000Z (over 1 year ago)
- Last Synced: 2025-03-12T16:41:22.871Z (over 1 year ago)
- Language: Ruby
- Size: 256 KB
- Stars: 1
- Watchers: 6
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Docker Image - Open Policy Agent AWS
## Development
### Managing CircleCI keys
To encrypt a GPG key for use by CircleCI:
```bash
openssl aes-256-cbc \
-e \
-md sha1 \
-in ./config/secrets/ci/gpg.private \
-out ./.circleci/gpg.private.enc \
-k ""
```
To check decryption is working correctly:
```bash
openssl aes-256-cbc \
-d \
-md sha1 \
-in ./.circleci/gpg.private.enc \
-k ""
```