<!-- Please make sure you have read the submission guidelines before posting an PR --> <!-- https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md#-submitting-a-pr --> <!-- Please make sure that your commit message follows our format --> <!-- Example: `fix(nx): must begin with lowercase` --> <!-- If this is a particularly complex change or feature addition, you can request a dedicated Nx release for this pull request branch. Mention someone from the Nx team or the `@nrwl/nx-pipelines-reviewers` and they will confirm if the PR warrants its own release for testing purposes, and generate it for you if appropriate. --> ## Current Behavior <!-- This is the behavior we have today --> ## Expected Behavior <!-- This is the behavior we should expect with the changes in this PR --> ## Related Issue(s) <!-- Please link the issue being fixed so it gets closed when this is merged. --> Fixes #
41 lines
1.3 KiB
JSON
41 lines
1.3 KiB
JSON
{
|
|
"name": "init",
|
|
"factory": "./src/generators/init/generator",
|
|
"schema": {
|
|
"$schema": "https://json-schema.org/schema",
|
|
"$id": "Init",
|
|
"title": "",
|
|
"type": "object",
|
|
"properties": {
|
|
"region": {
|
|
"type": "string",
|
|
"description": "The AWS region the bucket is located in"
|
|
},
|
|
"accessKeyId": {
|
|
"type": "string",
|
|
"description": "The AWS Access Key ID to use to access the S3 Bucket, alternatively set the AWS_ACCESS_KEY_ID environment variable"
|
|
},
|
|
"secretAccessKey": {
|
|
"type": "string",
|
|
"description": "The AWS Secret Access Key to use to access the S3 Bucket, alternatively set the AWS_SECRET_ACCESS_KEY environment variable"
|
|
},
|
|
"bucket": {
|
|
"type": "string",
|
|
"description": "The the name of the S3 Bucket to store the Nx Cache in"
|
|
},
|
|
"forcePathStyle": {
|
|
"type": "boolean",
|
|
"description": "Set to true to use path style URLs for S3 objects"
|
|
}
|
|
},
|
|
"required": [],
|
|
"presets": []
|
|
},
|
|
"description": "Initialize the S3 Cache",
|
|
"implementation": "/libs/nx-packages/powerpack-s3-cache/src/generators/init/generator.ts",
|
|
"aliases": [],
|
|
"hidden": false,
|
|
"path": "/libs/nx-packages/powerpack-s3-cache/src/generators/init/schema.json",
|
|
"type": "generator"
|
|
}
|