@ptfm/chainguard 0.1.28
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/README.md +3 -0
- package/bin/accountAssociations.d.ts +110 -0
- package/bin/accountAssociations.js +62 -0
- package/bin/accountAssociations.js.map +1 -0
- package/bin/apkoBuild.d.ts +80 -0
- package/bin/apkoBuild.js +61 -0
- package/bin/apkoBuild.js.map +1 -0
- package/bin/config/index.d.ts +1 -0
- package/bin/config/index.js +21 -0
- package/bin/config/index.js.map +1 -0
- package/bin/config/vars.d.ts +17 -0
- package/bin/config/vars.js +25 -0
- package/bin/config/vars.js.map +1 -0
- package/bin/getGroup.d.ts +28 -0
- package/bin/getGroup.js +28 -0
- package/bin/getGroup.js.map +1 -0
- package/bin/getIdentity.d.ts +25 -0
- package/bin/getIdentity.js +24 -0
- package/bin/getIdentity.js.map +1 -0
- package/bin/getRole.d.ts +29 -0
- package/bin/getRole.js +28 -0
- package/bin/getRole.js.map +1 -0
- package/bin/getVersions.d.ts +34 -0
- package/bin/getVersions.js +24 -0
- package/bin/getVersions.js.map +1 -0
- package/bin/group.d.ts +87 -0
- package/bin/group.js +57 -0
- package/bin/group.js.map +1 -0
- package/bin/groupInvite.d.ts +92 -0
- package/bin/groupInvite.js +68 -0
- package/bin/groupInvite.js.map +1 -0
- package/bin/identity.d.ts +122 -0
- package/bin/identity.js +64 -0
- package/bin/identity.js.map +1 -0
- package/bin/identityProvider.d.ts +98 -0
- package/bin/identityProvider.js +63 -0
- package/bin/identityProvider.js.map +1 -0
- package/bin/imageRepo.d.ts +122 -0
- package/bin/imageRepo.js +64 -0
- package/bin/imageRepo.js.map +1 -0
- package/bin/imageTag.d.ts +72 -0
- package/bin/imageTag.js +56 -0
- package/bin/imageTag.js.map +1 -0
- package/bin/index.d.ts +51 -0
- package/bin/index.js +100 -0
- package/bin/index.js.map +1 -0
- package/bin/package.json +34 -0
- package/bin/provider.d.ts +48 -0
- package/bin/provider.js +47 -0
- package/bin/provider.js.map +1 -0
- package/bin/role.d.ts +84 -0
- package/bin/role.js +61 -0
- package/bin/role.js.map +1 -0
- package/bin/rolebinding.d.ts +72 -0
- package/bin/rolebinding.js +62 -0
- package/bin/rolebinding.js.map +1 -0
- package/bin/subscription.d.ts +60 -0
- package/bin/subscription.js +57 -0
- package/bin/subscription.js.map +1 -0
- package/bin/types/index.d.ts +3 -0
- package/bin/types/index.js +11 -0
- package/bin/types/index.js.map +1 -0
- package/bin/types/input.d.ts +187 -0
- package/bin/types/input.js +5 -0
- package/bin/types/input.js.map +1 -0
- package/bin/types/output.d.ts +309 -0
- package/bin/types/output.js +5 -0
- package/bin/types/output.js.map +1 -0
- package/bin/utilities.d.ts +9 -0
- package/bin/utilities.js +141 -0
- package/bin/utilities.js.map +1 -0
- package/package.json +34 -0
package/package.json
ADDED
@@ -0,0 +1,34 @@
|
|
1
|
+
{
|
2
|
+
"name": "@ptfm/chainguard",
|
3
|
+
"version": "0.1.28",
|
4
|
+
"description": "A Pulumi provider dynamically bridged from chainguard.",
|
5
|
+
"main": "bin/index.js",
|
6
|
+
"scripts": {
|
7
|
+
"build": "tsc"
|
8
|
+
},
|
9
|
+
"dependencies": {
|
10
|
+
"@pulumi/pulumi": "^3.142.0",
|
11
|
+
"async-mutex": "^0.5.0"
|
12
|
+
},
|
13
|
+
"devDependencies": {
|
14
|
+
"@types/node": "^14",
|
15
|
+
"typescript": "^4.3.5"
|
16
|
+
},
|
17
|
+
"pulumi": {
|
18
|
+
"resource": true,
|
19
|
+
"name": "terraform-provider",
|
20
|
+
"version": "0.8.1",
|
21
|
+
"parameterization": {
|
22
|
+
"name": "chainguard",
|
23
|
+
"version": "0.1.28",
|
24
|
+
"value": "eyJyZW1vdGUiOnsidXJsIjoicmVnaXN0cnkudGVycmFmb3JtLmlvL2NoYWluZ3VhcmQtZGV2L2NoYWluZ3VhcmQiLCJ2ZXJzaW9uIjoiMC4xLjI4In19"
|
25
|
+
}
|
26
|
+
},
|
27
|
+
"repository": {
|
28
|
+
"url": "git+https://github.com/risen228/pulumi-terraform-mirrors.git",
|
29
|
+
"type": "git"
|
30
|
+
},
|
31
|
+
"files": [
|
32
|
+
"bin/**"
|
33
|
+
]
|
34
|
+
}
|