cdk8s-sealed-secrets-controller 0.1.1

Creator: bradpython12

Last updated:

Add to Cart

Description:

cdk8ssealedsecretscontroller 0.1.1

cdk8s-sealed-secrets-controller
Extends APIObjects for sealed secrets controller.
Usage:
import { Construct } from 'constructs';
import { App, Chart, ChartProps } from 'cdk8s';
import { SealedSecretsTemplate } from '@opencdk8s/cdk8s-sealed-secrets-controller';

export class MyChart extends Chart {
constructor(scope: Construct, id: string, props: ChartProps = { }) {
super(scope, id, props);
new SealedSecretsTemplate(this, 'example', {});
}
}

const app = new App();
new MyChart(app, 'example');
app.synth();

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.