Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gammarers/aws-secure-pipeline-artifact-bucket
https://github.com/gammarers/aws-secure-pipeline-artifact-bucket
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/gammarers/aws-secure-pipeline-artifact-bucket
- Owner: gammarers
- License: apache-2.0
- Created: 2024-11-23T10:03:50.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2024-11-25T04:57:42.000Z (about 1 month ago)
- Last Synced: 2024-11-25T05:26:12.797Z (about 1 month ago)
- Language: TypeScript
- Size: 120 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# AWS Secure Pipeline Artifact Bucket
This S3 bucket is the artifact bucket used for CDK pipelines, created when the --qualifier option is specified during the CDK bootstrap process. If you specify the --qualifier option or explicitly define an artifact bucket for CDK pipelines, you need to configure a policy that allows access to this bucket from the CDK deploy role.
## Install
### TypeScript
#### install by npm
```shell
npm install @gammarers/aws-secure-pipeline-artifact-bucket
```#### install by yarn
```shell
yarn add @gammarers/aws-secure-pipeline-artifact-bucket
```## Example
```typescript
import { SecurePipelineArtifactBucket } from '@gammarers/aws-secure-pipeline-artifact-bucket';const bucket = new SecurePipelineArtifactBucket(stack, 'SecurePipelineArtifactBucket');
```## License
This project is licensed under the Apache-2.0 License.