Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 9 days 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 (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-21T18:21:13.000Z (9 months ago)
- Last Synced: 2024-04-23T05:41:57.495Z (9 months 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
[![GitHub](https://img.shields.io/github/license/gammarers/aws-secure-vpc-bucket?style=flat-square)](https://github.com/gammarers/aws-secure-vpc-bucket/blob/main/LICENSE)
[![npm (scoped)](https://img.shields.io/npm/v/@gammarers/aws-secure-vpc-bucket?style=flat-square)](https://www.npmjs.com/package/@gammarers/aws-secure-vpc-bucket)
[![PyPI](https://img.shields.io/pypi/v/gammarers.aws-secure-vpc-bucket?style=flat-square)](https://pypi.org/project/gammarers.aws-secure-vpc-bucket/)
[![Nuget](https://img.shields.io/nuget/v/Gammarers.CDK.AWS.SecureVpcBucket?style=flat-square)](https://www.nuget.org/packages/Gammarers.CDK.AWS.SecureVpcBucket/)
[![GitHub Workflow Status (branch)](https://img.shields.io/github/actions/workflow/status/gammarers/aws-secure-vpc-bucket/release.yml?branch=main&label=release&style=flat-square)](https://github.com/gammarers/aws-secure-vpc-bucket/actions/workflows/release.yml)
[![GitHub release (latest SemVer)](https://img.shields.io/github/v/release/gammarers/aws-secure-vpc-bucket?sort=semver&style=flat-square)](https://github.com/gammarers/aws-secure-vpc-bucket/releases)[![View on Construct Hub](https://constructs.dev/badge?package=@gammarers/aws-secure-vpc-bucket)](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.