@dotzen/dotzen 0.1.0 → 0.1.1
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/dist/vocabulary/index.d.ts +1 -0
- package/dist/vocabulary/index.js +1 -0
- package/package.json +74 -74
|
@@ -32,6 +32,7 @@ export declare enum AwsResource {
|
|
|
32
32
|
EcsTaskDefinition = "aws_ecs_task_definition",
|
|
33
33
|
SecretsmanagerSecretVersion = "aws_secretsmanager_secret_version",
|
|
34
34
|
RdsCluster = "aws_rds_cluster",
|
|
35
|
+
RdsClusterInstance = "aws_rds_cluster_instance",
|
|
35
36
|
RedshiftCluster = "aws_redshift_cluster",
|
|
36
37
|
ElasticacheReplicationGroup = "aws_elasticache_replication_group",
|
|
37
38
|
S3BucketServerSideEncryptionConfiguration = "aws_s3_bucket_server_side_encryption_configuration",
|
package/dist/vocabulary/index.js
CHANGED
|
@@ -37,6 +37,7 @@ var AwsResource;
|
|
|
37
37
|
AwsResource["EcsTaskDefinition"] = "aws_ecs_task_definition";
|
|
38
38
|
AwsResource["SecretsmanagerSecretVersion"] = "aws_secretsmanager_secret_version";
|
|
39
39
|
AwsResource["RdsCluster"] = "aws_rds_cluster";
|
|
40
|
+
AwsResource["RdsClusterInstance"] = "aws_rds_cluster_instance";
|
|
40
41
|
AwsResource["RedshiftCluster"] = "aws_redshift_cluster";
|
|
41
42
|
AwsResource["ElasticacheReplicationGroup"] = "aws_elasticache_replication_group";
|
|
42
43
|
AwsResource["S3BucketServerSideEncryptionConfiguration"] = "aws_s3_bucket_server_side_encryption_configuration";
|
package/package.json
CHANGED
|
@@ -1,74 +1,74 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@dotzen/dotzen",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "Prose as Code — governance for AI-generated Terraform (AWS, Azure, GCP).",
|
|
5
|
-
"license": "MIT",
|
|
6
|
-
"keywords": [
|
|
7
|
-
"terraform",
|
|
8
|
-
"hcl",
|
|
9
|
-
"governance",
|
|
10
|
-
"policy-as-code",
|
|
11
|
-
"iac",
|
|
12
|
-
"security",
|
|
13
|
-
"cis",
|
|
14
|
-
"compliance",
|
|
15
|
-
"aws",
|
|
16
|
-
"azure",
|
|
17
|
-
"gcp"
|
|
18
|
-
],
|
|
19
|
-
"repository": {
|
|
20
|
-
"type": "git",
|
|
21
|
-
"url": "git+https://gitlab.com/governance-tools/dotzen.git",
|
|
22
|
-
"directory": "packages/cli"
|
|
23
|
-
},
|
|
24
|
-
"homepage": "https://gitlab.com/governance-tools/dotzen#readme",
|
|
25
|
-
"bugs": {
|
|
26
|
-
"url": "https://gitlab.com/governance-tools/dotzen/-/issues"
|
|
27
|
-
},
|
|
28
|
-
"bin": {
|
|
29
|
-
"dotzen": "./bin/dotzen.js"
|
|
30
|
-
},
|
|
31
|
-
"main": "./dist/index.js",
|
|
32
|
-
"types": "./dist/index.d.ts",
|
|
33
|
-
"exports": {
|
|
34
|
-
".": {
|
|
35
|
-
"types": "./dist/index.d.ts",
|
|
36
|
-
"default": "./dist/index.js"
|
|
37
|
-
}
|
|
38
|
-
},
|
|
39
|
-
"files": [
|
|
40
|
-
"dist",
|
|
41
|
-
"bin"
|
|
42
|
-
],
|
|
43
|
-
"engines": {
|
|
44
|
-
"node": ">=18"
|
|
45
|
-
},
|
|
46
|
-
"publishConfig": {
|
|
47
|
-
"access": "public"
|
|
48
|
-
},
|
|
49
|
-
"scripts": {
|
|
50
|
-
"build": "tsc -p tsconfig.build.json",
|
|
51
|
-
"typecheck": "tsc --noEmit",
|
|
52
|
-
"test": "vitest run src",
|
|
53
|
-
"test:integration": "vitest run tests",
|
|
54
|
-
"coverage": "vitest run --coverage",
|
|
55
|
-
"lint": "eslint .",
|
|
56
|
-
"format:check": "prettier --check .",
|
|
57
|
-
"format": "prettier --write .",
|
|
58
|
-
"prepublishOnly": "npm run build"
|
|
59
|
-
},
|
|
60
|
-
"dependencies": {
|
|
61
|
-
"@cdktf/hcl2json": "^0.21.0",
|
|
62
|
-
"jiti": "^2.4.2"
|
|
63
|
-
},
|
|
64
|
-
"devDependencies": {
|
|
65
|
-
"@types/node": "^22.10.5",
|
|
66
|
-
"@vitest/coverage-v8": "^4.1.10",
|
|
67
|
-
"eslint": "^9.17.0",
|
|
68
|
-
"eslint-plugin-security": "^3.0.1",
|
|
69
|
-
"prettier": "^3.4.2",
|
|
70
|
-
"typescript": "^5.7.2",
|
|
71
|
-
"typescript-eslint": "^8.19.0",
|
|
72
|
-
"vitest": "^4.1.10"
|
|
73
|
-
}
|
|
74
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@dotzen/dotzen",
|
|
3
|
+
"version": "0.1.1",
|
|
4
|
+
"description": "Prose as Code — governance for AI-generated Terraform (AWS, Azure, GCP).",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"terraform",
|
|
8
|
+
"hcl",
|
|
9
|
+
"governance",
|
|
10
|
+
"policy-as-code",
|
|
11
|
+
"iac",
|
|
12
|
+
"security",
|
|
13
|
+
"cis",
|
|
14
|
+
"compliance",
|
|
15
|
+
"aws",
|
|
16
|
+
"azure",
|
|
17
|
+
"gcp"
|
|
18
|
+
],
|
|
19
|
+
"repository": {
|
|
20
|
+
"type": "git",
|
|
21
|
+
"url": "git+https://gitlab.com/governance-tools/dotzen.git",
|
|
22
|
+
"directory": "packages/cli"
|
|
23
|
+
},
|
|
24
|
+
"homepage": "https://gitlab.com/governance-tools/dotzen#readme",
|
|
25
|
+
"bugs": {
|
|
26
|
+
"url": "https://gitlab.com/governance-tools/dotzen/-/issues"
|
|
27
|
+
},
|
|
28
|
+
"bin": {
|
|
29
|
+
"dotzen": "./bin/dotzen.js"
|
|
30
|
+
},
|
|
31
|
+
"main": "./dist/index.js",
|
|
32
|
+
"types": "./dist/index.d.ts",
|
|
33
|
+
"exports": {
|
|
34
|
+
".": {
|
|
35
|
+
"types": "./dist/index.d.ts",
|
|
36
|
+
"default": "./dist/index.js"
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
"files": [
|
|
40
|
+
"dist",
|
|
41
|
+
"bin"
|
|
42
|
+
],
|
|
43
|
+
"engines": {
|
|
44
|
+
"node": ">=18"
|
|
45
|
+
},
|
|
46
|
+
"publishConfig": {
|
|
47
|
+
"access": "public"
|
|
48
|
+
},
|
|
49
|
+
"scripts": {
|
|
50
|
+
"build": "tsc -p tsconfig.build.json",
|
|
51
|
+
"typecheck": "tsc --noEmit",
|
|
52
|
+
"test": "vitest run src",
|
|
53
|
+
"test:integration": "vitest run tests",
|
|
54
|
+
"coverage": "vitest run --coverage",
|
|
55
|
+
"lint": "eslint .",
|
|
56
|
+
"format:check": "prettier --check .",
|
|
57
|
+
"format": "prettier --write .",
|
|
58
|
+
"prepublishOnly": "npm run build"
|
|
59
|
+
},
|
|
60
|
+
"dependencies": {
|
|
61
|
+
"@cdktf/hcl2json": "^0.21.0",
|
|
62
|
+
"jiti": "^2.4.2"
|
|
63
|
+
},
|
|
64
|
+
"devDependencies": {
|
|
65
|
+
"@types/node": "^22.10.5",
|
|
66
|
+
"@vitest/coverage-v8": "^4.1.10",
|
|
67
|
+
"eslint": "^9.17.0",
|
|
68
|
+
"eslint-plugin-security": "^3.0.1",
|
|
69
|
+
"prettier": "^3.4.2",
|
|
70
|
+
"typescript": "^5.7.2",
|
|
71
|
+
"typescript-eslint": "^8.19.0",
|
|
72
|
+
"vitest": "^4.1.10"
|
|
73
|
+
}
|
|
74
|
+
}
|