p6-cdk-namer 0.10.7 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.jsii +3 -3
- package/README.md +1 -0
- package/lib/p6namer.js +1 -1
- package/package.json +1 -1
package/.jsii
CHANGED
|
@@ -3884,7 +3884,7 @@
|
|
|
3884
3884
|
},
|
|
3885
3885
|
"name": "p6-cdk-namer",
|
|
3886
3886
|
"readme": {
|
|
3887
|
-
"markdown": "AWS CDK setups up a Custom Resource via Cloud Formation which sets the AWS IAM Account Alias\n\n# P6Namer\n\n## LICENSE\n\n[](https://opensource.org/licenses/Apache-2.0)\n\n## Other\n\n[](https://gitpod.io/#https://github.com/p6m7g8/p6-cdk-namer)   \n\n## Usage\n\n```ts\n...\nimport { P6Namer } from 'p6-cdk-namer';\n\nnew P6Namer(this, 'AccountAlias', {\n accountAlias: 'THE-ALIAS',\n});\n```\n\n## Architecture\n\n\n\n## Author\n\nPhilip M. Gollucci <pgollucci@p6m7g8.com>\n"
|
|
3887
|
+
"markdown": "AWS CDK setups up a Custom Resource via Cloud Formation which sets the AWS IAM Account Alias\n\n# P6Namer\n\n## LICENSE\n\n[](https://opensource.org/licenses/Apache-2.0)\n\n## Other\n\n[](https://gitpod.io/#https://github.com/p6m7g8/p6-cdk-namer)   \n\n## Usage\n\n```ts\n...\nimport { P6Namer } from 'p6-cdk-namer';\n\nnew P6Namer(this, 'AccountAlias', {\n accountAlias: 'THE-ALIAS',\n});\n```\n\n## Architecture\n\n\n\n## Author\n\nPhilip M. Gollucci <pgollucci@p6m7g8.com>\n\n"
|
|
3888
3888
|
},
|
|
3889
3889
|
"repository": {
|
|
3890
3890
|
"type": "git",
|
|
@@ -3978,6 +3978,6 @@
|
|
|
3978
3978
|
"symbolId": "src/p6namer:P6Namer"
|
|
3979
3979
|
}
|
|
3980
3980
|
},
|
|
3981
|
-
"version": "0.
|
|
3982
|
-
"fingerprint": "
|
|
3981
|
+
"version": "1.0.0",
|
|
3982
|
+
"fingerprint": "1vo9ctO68LyzD1HnZDS5uCER69JsGJHnv9kYaBiun3w="
|
|
3983
3983
|
}
|
package/README.md
CHANGED
package/lib/p6namer.js
CHANGED
|
@@ -31,7 +31,7 @@ const lambdajs = __importStar(require("aws-cdk-lib/aws-lambda-nodejs"));
|
|
|
31
31
|
const cr = __importStar(require("aws-cdk-lib/custom-resources"));
|
|
32
32
|
const floyd = __importStar(require("cdk-iam-floyd"));
|
|
33
33
|
class P6Namer extends cdk.Resource {
|
|
34
|
-
static [JSII_RTTI_SYMBOL_1] = { fqn: "p6-cdk-namer.P6Namer", version: "0.
|
|
34
|
+
static [JSII_RTTI_SYMBOL_1] = { fqn: "p6-cdk-namer.P6Namer", version: "1.0.0" };
|
|
35
35
|
constructor(scope, id, props) {
|
|
36
36
|
super(scope, id);
|
|
37
37
|
const policy = new floyd.Statement.Iam().allow().toCreateAccountAlias();
|