https://github.com/gammarers/aws-secure-vpc-bucket
Access to specific VPC Endpoint only Bucket
https://github.com/gammarers/aws-secure-vpc-bucket
Last synced: 5 months ago
JSON representation
Access to specific VPC Endpoint only Bucket
- Host: GitHub
- URL: https://github.com/gammarers/aws-secure-vpc-bucket
- Owner: gammarers
- License: apache-2.0
- Created: 2023-02-16T08:52:16.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-21T18:21:13.000Z (about 1 year ago)
- Last Synced: 2024-04-23T05:41:57.495Z (about 1 year ago)
- Language: TypeScript
- Size: 994 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# AWS Secure VPC Bucket
[](https://github.com/gammarers/aws-secure-vpc-bucket/blob/main/LICENSE)
[](https://www.npmjs.com/package/@gammarers/aws-secure-vpc-bucket)
[](https://pypi.org/project/gammarers.aws-secure-vpc-bucket/)
[](https://www.nuget.org/packages/Gammarers.CDK.AWS.SecureVpcBucket/)
[](https://github.com/gammarers/aws-secure-vpc-bucket/actions/workflows/release.yml)
[](https://github.com/gammarers/aws-secure-vpc-bucket/releases)[](https://constructs.dev/packages/@gammarers/aws-secure-vpc-bucket)
Access from specific VPC Endpoint only Bucket
## Install
### TypeScript
```shell
npm install @gammarers/aws-secure-vpc-bucket
```
or
```shell
yarn add @gammarers/aws-secure-vpc-bucket
```
or
```shell
pnpm add @gammarers/aws-secure-vpc-bucket
```
or
```shell
bun add @gammarers/aws-secure-vpc-bucket
```### Python
```shell
pip install gammarers.aws-secure-vpc-bucket
```### C# / .NET
```shell
dotnet add package gammarers.CDK.AWS.SecureVpcBucket
```## Example
```typescript
import { SecureSpecificVpcOnlyBucket } from '@gammarers/aws-secure-vpc-bucket';new SecureVpcBucket(stack, 'SecureVpcBucket', {
bucketName: 'example-origin-bucket',
vpcEndpointId: 'vpce-0xxxxxxxxxxxxxxxx', // already created vpc endpoint id
});```
## License
This project is licensed under the Apache-2.0 License.