@voxgig/sdkgen 4.10.0 → 4.11.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/bin/voxgig-sdkgen +1 -1
- package/package.json +1 -1
- package/project/.sdk/model/feature/secrets.aon +330 -0
- package/project/.sdk/model/target/c.aon +15 -2
- package/project/.sdk/model/target/cpp.aon +18 -0
- package/project/.sdk/model/target/lua.aon +17 -0
- package/project/.sdk/model/target/ocaml.aon +48 -5
- package/project/.sdk/model/target/zig.aon +30 -4
- package/project/.sdk/src/cmp/c/Config_c.ts +338 -1
- package/project/.sdk/src/cmp/c/Main_c.ts +57 -2
- package/project/.sdk/src/cmp/c/Package_c.ts +12 -2
- package/project/.sdk/src/cmp/cpp/Config_cpp.ts +324 -2
- package/project/.sdk/src/cmp/cpp/Gitignore_cpp.ts +2 -0
- package/project/.sdk/src/cmp/cpp/Main_cpp.ts +62 -4
- package/project/.sdk/src/cmp/cpp/Package_cpp.ts +10 -0
- package/project/.sdk/src/cmp/lua/Config_lua.ts +88 -0
- package/project/.sdk/src/cmp/lua/Gitignore_lua.ts +4 -0
- package/project/.sdk/src/cmp/lua/Main_lua.ts +93 -3
- package/project/.sdk/src/cmp/lua/Package_lua.ts +60 -0
- package/project/.sdk/src/cmp/lua/fragment/Main.fragment.lua +10 -0
- package/project/.sdk/src/cmp/ocaml/Config_ocaml.ts +183 -5
- package/project/.sdk/src/cmp/ocaml/Main_ocaml.ts +160 -3
- package/project/.sdk/src/cmp/ocaml/Package_ocaml.ts +25 -1
- package/project/.sdk/src/cmp/zig/Config_zig.ts +130 -9
- package/project/.sdk/src/cmp/zig/Main_zig.ts +208 -4
- package/project/.sdk/{tm/zig/build.zig → src/cmp/zig/fragment/Build.fragment.zig} +7 -0
- package/project/.sdk/src/cmp/zig/fragment/Main.fragment.zig +25 -0
- package/project/.sdk/{tm/zig/root.zig → src/cmp/zig/fragment/Root.fragment.zig} +9 -0
- package/project/.sdk/tm/c/Makefile +58 -9
- package/project/.sdk/tm/c/core/sdk.h +10 -0
- package/project/.sdk/tm/c/feature/secrets/plugin/capability.c +133 -0
- package/project/.sdk/tm/c/feature/secrets/plugin/capability.h +39 -0
- package/project/.sdk/tm/c/feature/secrets/plugin/catalog.c +83 -0
- package/project/.sdk/tm/c/feature/secrets/plugin/catalog.h +48 -0
- package/project/.sdk/tm/c/feature/secrets/plugin/config.c +413 -0
- package/project/.sdk/tm/c/feature/secrets/plugin/config.h +24 -0
- package/project/.sdk/tm/c/feature/secrets/plugin/depend.c +264 -0
- package/project/.sdk/tm/c/feature/secrets/plugin/depend.h +29 -0
- package/project/.sdk/tm/c/feature/secrets/plugin/env.c +220 -0
- package/project/.sdk/tm/c/feature/secrets/plugin/env.h +19 -0
- package/project/.sdk/tm/c/feature/secrets/plugin/export.c +97 -0
- package/project/.sdk/tm/c/feature/secrets/plugin/export.h +19 -0
- package/project/.sdk/tm/c/feature/secrets/plugin/graph.c +237 -0
- package/project/.sdk/tm/c/feature/secrets/plugin/graph.h +17 -0
- package/project/.sdk/tm/c/feature/secrets/plugin/host.c +1494 -0
- package/project/.sdk/tm/c/feature/secrets/plugin/host.h +135 -0
- package/project/.sdk/tm/c/feature/secrets/plugin/order.c +288 -0
- package/project/.sdk/tm/c/feature/secrets/plugin/order.h +18 -0
- package/project/.sdk/tm/c/feature/secrets/plugin/point.c +141 -0
- package/project/.sdk/tm/c/feature/secrets/plugin/point.h +80 -0
- package/project/.sdk/tm/c/feature/secrets/plugin/ref.c +170 -0
- package/project/.sdk/tm/c/feature/secrets/plugin/ref.h +52 -0
- package/project/.sdk/tm/c/feature/secrets/plugin/resolve.c +98 -0
- package/project/.sdk/tm/c/feature/secrets/plugin/resolve.h +18 -0
- package/project/.sdk/tm/c/feature/secrets/plugin/types.c +150 -0
- package/project/.sdk/tm/c/feature/secrets/plugin/types.h +104 -0
- package/project/.sdk/tm/c/feature/secrets/plugin/value.c +649 -0
- package/project/.sdk/tm/c/feature/secrets/plugin/value.h +135 -0
- package/project/.sdk/tm/c/feature/secrets/plugin/version.c +151 -0
- package/project/.sdk/tm/c/feature/secrets/plugin/version.h +34 -0
- package/project/.sdk/tm/c/feature/secrets/plugins/aws.c +281 -0
- package/project/.sdk/tm/c/feature/secrets/plugins/azuresecrets.c +207 -0
- package/project/.sdk/tm/c/feature/secrets/plugins/boru.c +164 -0
- package/project/.sdk/tm/c/feature/secrets/plugins/clock.c +75 -0
- package/project/.sdk/tm/c/feature/secrets/plugins/doppler.c +141 -0
- package/project/.sdk/tm/c/feature/secrets/plugins/encode.c +144 -0
- package/project/.sdk/tm/c/feature/secrets/plugins/gcpsecrets.c +177 -0
- package/project/.sdk/tm/c/feature/secrets/plugins/hashicorp.c +239 -0
- package/project/.sdk/tm/c/feature/secrets/plugins/httpjson.c +599 -0
- package/project/.sdk/tm/c/feature/secrets/plugins/infisical.c +165 -0
- package/project/.sdk/tm/c/feature/secrets/plugins/onepassword.c +194 -0
- package/project/.sdk/tm/c/feature/secrets/plugins/proc.c +233 -0
- package/project/.sdk/tm/c/feature/secrets/plugins/secretspec.c +125 -0
- package/project/.sdk/tm/c/feature/secrets/plugins/sekretoplugins.h +125 -0
- package/project/.sdk/tm/c/feature/secrets/plugins/sha256.c +270 -0
- package/project/.sdk/tm/c/feature/secrets/plugins/sigv4.c +382 -0
- package/project/.sdk/tm/c/feature/secrets/plugins/support.h +153 -0
- package/project/.sdk/tm/c/feature/secrets/plugins/tls.c +420 -0
- package/project/.sdk/tm/c/feature/secrets/sekreto/internal.h +86 -0
- package/project/.sdk/tm/c/feature/secrets/sekreto/json.c +721 -0
- package/project/.sdk/tm/c/feature/secrets/sekreto/providers.c +813 -0
- package/project/.sdk/tm/c/feature/secrets/sekreto/sekreto.c +944 -0
- package/project/.sdk/tm/c/feature/secrets/sekreto/sekreto.h +490 -0
- package/project/.sdk/tm/c/feature/secrets/sekreto/util.c +442 -0
- package/project/.sdk/tm/c/feature/secrets.c +797 -0
- package/project/.sdk/tm/c/feature/secrets.h +46 -0
- package/project/.sdk/tm/c/src/feature/secrets/.gitkeep +0 -0
- package/project/.sdk/tm/c/tests/feature/secrets/secrets_test.c +802 -0
- package/project/.sdk/tm/clojure/feature/secrets/sdk/feature/secrets.clj +38 -11
- package/project/.sdk/tm/clojure/test/sdk/test/feature/secrets.clj +40 -6
- package/project/.sdk/tm/cpp/Makefile +48 -4
- package/project/.sdk/tm/cpp/feature/secrets/plugin/capability.cpp +121 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugin/capability.hpp +41 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugin/catalog.cpp +60 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugin/catalog.hpp +66 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugin/config.cpp +376 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugin/config.hpp +29 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugin/depend.cpp +230 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugin/depend.hpp +31 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugin/env.cpp +205 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugin/env.hpp +25 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugin/export.cpp +84 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugin/export.hpp +24 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugin/graph.cpp +222 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugin/graph.hpp +21 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugin/host.cpp +1200 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugin/host.hpp +250 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugin/order.cpp +250 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugin/order.hpp +22 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugin/point.cpp +110 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugin/point.hpp +79 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugin/ref.cpp +136 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugin/ref.hpp +60 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugin/resolve.cpp +82 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugin/resolve.hpp +25 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugin/types.cpp +90 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugin/types.hpp +65 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugin/value.cpp +491 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugin/value.hpp +120 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugin/version.cpp +143 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugin/version.hpp +36 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugins/Aws.cpp +248 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugins/Aws.hpp +30 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugins/Azuresecrets.cpp +149 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugins/Azuresecrets.hpp +23 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugins/Boru.cpp +117 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugins/Boru.hpp +27 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugins/Crypto.cpp +180 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugins/Crypto.hpp +52 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugins/Doppler.cpp +87 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugins/Doppler.hpp +23 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugins/Gcpsecrets.cpp +121 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugins/Gcpsecrets.hpp +23 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugins/Hashicorp.cpp +153 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugins/Hashicorp.hpp +23 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugins/Httpjson.cpp +666 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugins/Httpjson.hpp +160 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugins/Infisical.cpp +123 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugins/Infisical.hpp +23 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugins/Onepassword.cpp +125 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugins/Onepassword.hpp +23 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugins/Proc.cpp +223 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugins/Proc.hpp +47 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugins/Secretspec.cpp +104 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugins/Secretspec.hpp +27 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugins/Sigv4.cpp +242 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugins/Sigv4.hpp +58 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugins/Tls.cpp +260 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugins/Tls.hpp +47 -0
- package/project/.sdk/tm/cpp/feature/secrets/sekreto/Json.cpp +476 -0
- package/project/.sdk/tm/cpp/feature/secrets/sekreto/Json.hpp +89 -0
- package/project/.sdk/tm/cpp/feature/secrets/sekreto/Provider.cpp +312 -0
- package/project/.sdk/tm/cpp/feature/secrets/sekreto/Provider.hpp +263 -0
- package/project/.sdk/tm/cpp/feature/secrets/sekreto/Providers.cpp +354 -0
- package/project/.sdk/tm/cpp/feature/secrets/sekreto/Providers.hpp +111 -0
- package/project/.sdk/tm/cpp/feature/secrets/sekreto/Sekreto.cpp +613 -0
- package/project/.sdk/tm/cpp/feature/secrets/sekreto/Sekreto.hpp +227 -0
- package/project/.sdk/tm/cpp/feature/secrets.hpp +745 -0
- package/project/.sdk/tm/cpp/src/feature/secrets/.gitkeep +0 -0
- package/project/.sdk/tm/cpp/test/feature/secrets/secrets_test.cpp +808 -0
- package/project/.sdk/tm/csharp/feature/SecretsFeature.cs +34 -8
- package/project/.sdk/tm/csharp/test/feature/secrets/SecretsFeatureTest.cs +85 -0
- package/project/.sdk/tm/elixir/lib/projectname/feature/secrets.ex +17 -2
- package/project/.sdk/tm/elixir/test/feature/secrets/secrets_test.exs +41 -0
- package/project/.sdk/tm/go/feature/secrets_feature.go +32 -10
- package/project/.sdk/tm/go/test/feature/secrets/secrets_feature_test.go +116 -0
- package/project/.sdk/tm/java/feature/SecretsFeature.java +33 -8
- package/project/.sdk/tm/java/test/feature/secrets/SecretsFeatureTest.java +64 -0
- package/project/.sdk/tm/js/src/feature/secrets/SecretsFeature.js +34 -11
- package/project/.sdk/tm/js/test/feature/secrets/Secrets.test.js +73 -0
- package/project/.sdk/tm/kotlin/feature/SecretsFeature.kt +32 -7
- package/project/.sdk/tm/kotlin/test/feature/secrets/SecretsTest.kt +69 -0
- package/project/.sdk/tm/lua/Makefile +15 -4
- package/project/.sdk/tm/lua/feature/secrets/native/sekretonet.c +806 -0
- package/project/.sdk/tm/lua/feature/secrets/plugin/capability.lua +135 -0
- package/project/.sdk/tm/lua/feature/secrets/plugin/catalog.lua +63 -0
- package/project/.sdk/tm/lua/feature/secrets/plugin/config.lua +361 -0
- package/project/.sdk/tm/lua/feature/secrets/plugin/depend.lua +232 -0
- package/project/.sdk/tm/lua/feature/secrets/plugin/env.lua +168 -0
- package/project/.sdk/tm/lua/feature/secrets/plugin/export.lua +66 -0
- package/project/.sdk/tm/lua/feature/secrets/plugin/graph.lua +194 -0
- package/project/.sdk/tm/lua/feature/secrets/plugin/host.lua +1190 -0
- package/project/.sdk/tm/lua/feature/secrets/plugin/json.lua +169 -0
- package/project/.sdk/tm/lua/feature/secrets/plugin/order.lua +207 -0
- package/project/.sdk/tm/lua/feature/secrets/plugin/point.lua +106 -0
- package/project/.sdk/tm/lua/feature/secrets/plugin/ref.lua +115 -0
- package/project/.sdk/tm/lua/feature/secrets/plugin/resolve.lua +78 -0
- package/project/.sdk/tm/lua/feature/secrets/plugin/types.lua +275 -0
- package/project/.sdk/tm/lua/feature/secrets/plugin/version.lua +131 -0
- package/project/.sdk/tm/lua/feature/secrets/plugin.lua +76 -0
- package/project/.sdk/tm/lua/feature/secrets/sekreto/addr.lua +124 -0
- package/project/.sdk/tm/lua/feature/secrets/sekreto/err.lua +47 -0
- package/project/.sdk/tm/lua/feature/secrets/sekreto/name.lua +315 -0
- package/project/.sdk/tm/lua/feature/secrets/sekreto/plugins/aws.lua +228 -0
- package/project/.sdk/tm/lua/feature/secrets/sekreto/plugins/azuresecrets.lua +137 -0
- package/project/.sdk/tm/lua/feature/secrets/sekreto/plugins/boru.lua +124 -0
- package/project/.sdk/tm/lua/feature/secrets/sekreto/plugins/crypto.lua +212 -0
- package/project/.sdk/tm/lua/feature/secrets/sekreto/plugins/doppler.lua +89 -0
- package/project/.sdk/tm/lua/feature/secrets/sekreto/plugins/gcpsecrets.lua +129 -0
- package/project/.sdk/tm/lua/feature/secrets/sekreto/plugins/hashicorp.lua +154 -0
- package/project/.sdk/tm/lua/feature/secrets/sekreto/plugins/httpjson.lua +248 -0
- package/project/.sdk/tm/lua/feature/secrets/sekreto/plugins/infisical.lua +113 -0
- package/project/.sdk/tm/lua/feature/secrets/sekreto/plugins/json.lua +449 -0
- package/project/.sdk/tm/lua/feature/secrets/sekreto/plugins/net.lua +198 -0
- package/project/.sdk/tm/lua/feature/secrets/sekreto/plugins/onepassword.lua +126 -0
- package/project/.sdk/tm/lua/feature/secrets/sekreto/plugins/secretspec.lua +93 -0
- package/project/.sdk/tm/lua/feature/secrets/sekreto/plugins/sigv4.lua +269 -0
- package/project/.sdk/tm/lua/feature/secrets/sekreto/plugins/support.lua +146 -0
- package/project/.sdk/tm/lua/feature/secrets/sekreto/providers.lua +346 -0
- package/project/.sdk/tm/lua/feature/secrets/sekreto.lua +479 -0
- package/project/.sdk/tm/lua/feature/secrets_feature.lua +690 -0
- package/project/.sdk/tm/lua/src/feature/secrets/.gitkeep +0 -0
- package/project/.sdk/tm/lua/test/extend_test.lua +105 -0
- package/project/.sdk/tm/lua/test/feature/secrets/secrets_feature_test.lua +862 -0
- package/project/.sdk/tm/ocaml/Makefile +52 -8
- package/project/.sdk/tm/ocaml/feature/secrets/plugin/capability.ml +106 -0
- package/project/.sdk/tm/ocaml/feature/secrets/plugin/catalog.ml +43 -0
- package/project/.sdk/tm/ocaml/feature/secrets/plugin/config.ml +349 -0
- package/project/.sdk/tm/ocaml/feature/secrets/plugin/defs.ml +143 -0
- package/project/.sdk/tm/ocaml/feature/secrets/plugin/depend.ml +217 -0
- package/project/.sdk/tm/ocaml/feature/secrets/plugin/env.ml +197 -0
- package/project/.sdk/tm/ocaml/feature/secrets/plugin/export.ml +89 -0
- package/project/.sdk/tm/ocaml/feature/secrets/plugin/graph.ml +227 -0
- package/project/.sdk/tm/ocaml/feature/secrets/plugin/host.ml +1112 -0
- package/project/.sdk/tm/ocaml/feature/secrets/plugin/order.ml +202 -0
- package/project/.sdk/tm/ocaml/feature/secrets/plugin/point.ml +138 -0
- package/project/.sdk/tm/ocaml/feature/secrets/plugin/ref.ml +126 -0
- package/project/.sdk/tm/ocaml/feature/secrets/plugin/resolve.ml +62 -0
- package/project/.sdk/tm/ocaml/feature/secrets/plugin/types.ml +97 -0
- package/project/.sdk/tm/ocaml/feature/secrets/plugin/value.ml +387 -0
- package/project/.sdk/tm/ocaml/feature/secrets/plugin/version.ml +139 -0
- package/project/.sdk/tm/ocaml/feature/secrets/plugins/aws.ml +171 -0
- package/project/.sdk/tm/ocaml/feature/secrets/plugins/azuresecrets.ml +116 -0
- package/project/.sdk/tm/ocaml/feature/secrets/plugins/boru.ml +95 -0
- package/project/.sdk/tm/ocaml/feature/secrets/plugins/crypto.ml +149 -0
- package/project/.sdk/tm/ocaml/feature/secrets/plugins/doppler.ml +61 -0
- package/project/.sdk/tm/ocaml/feature/secrets/plugins/gcpsecrets.ml +93 -0
- package/project/.sdk/tm/ocaml/feature/secrets/plugins/hashicorp.ml +120 -0
- package/project/.sdk/tm/ocaml/feature/secrets/plugins/http.ml +421 -0
- package/project/.sdk/tm/ocaml/feature/secrets/plugins/httpjson.ml +66 -0
- package/project/.sdk/tm/ocaml/feature/secrets/plugins/infisical.ml +85 -0
- package/project/.sdk/tm/ocaml/feature/secrets/plugins/onepassword.ml +112 -0
- package/project/.sdk/tm/ocaml/feature/secrets/plugins/runcmd.ml +97 -0
- package/project/.sdk/tm/ocaml/feature/secrets/plugins/secretspec.ml +68 -0
- package/project/.sdk/tm/ocaml/feature/secrets/plugins/sigv4.ml +259 -0
- package/project/.sdk/tm/ocaml/feature/secrets/plugins/tls.ml +44 -0
- package/project/.sdk/tm/ocaml/feature/secrets/plugins/tls_stubs.c +358 -0
- package/project/.sdk/tm/ocaml/feature/secrets/sekreto/json.ml +376 -0
- package/project/.sdk/tm/ocaml/feature/secrets/sekreto/provider.ml +647 -0
- package/project/.sdk/tm/ocaml/feature/secrets/sekreto/secret.ml +299 -0
- package/project/.sdk/tm/ocaml/feature/secrets/sekreto/sekreto.ml +347 -0
- package/project/.sdk/tm/ocaml/feature/secrets_feature.ml +453 -0
- package/project/.sdk/tm/ocaml/src/feature/secrets/.gitkeep +0 -0
- package/project/.sdk/tm/ocaml/test/feature/secrets/t_secrets.ml +670 -0
- package/project/.sdk/tm/perl/feature/secrets_feature.pm +33 -12
- package/project/.sdk/tm/perl/t/feature/secrets/secrets.t +47 -0
- package/project/.sdk/tm/php/feature/SecretsFeature.php +30 -6
- package/project/.sdk/tm/php/test/feature/secrets/SecretsTest.php +98 -0
- package/project/.sdk/tm/py/pkg/feature/secrets_feature.py +28 -6
- package/project/.sdk/tm/py/test/feature/secrets/test_secrets.py +114 -0
- package/project/.sdk/tm/rb/feature/secrets_feature.rb +28 -6
- package/project/.sdk/tm/rb/test/feature/secrets/secrets_feature_test.rb +93 -0
- package/project/.sdk/tm/rust/feature/secrets.rs +33 -10
- package/project/.sdk/tm/rust/tests/feature/secrets/main.rs +96 -0
- package/project/.sdk/tm/scala/feature/SecretsFeature.scala +29 -7
- package/project/.sdk/tm/scala/sdktest/feature/secrets/SecretsTestMain.scala +71 -0
- package/project/.sdk/tm/ts/src/feature/secrets/SecretsFeature.ts +35 -12
- package/project/.sdk/tm/ts/test/feature/secrets/Secrets.test.ts +73 -0
- package/project/.sdk/tm/zig/feature/secrets/plugin/capability.zig +137 -0
- package/project/.sdk/tm/zig/feature/secrets/plugin/catalog.zig +90 -0
- package/project/.sdk/tm/zig/feature/secrets/plugin/config.zig +346 -0
- package/project/.sdk/tm/zig/feature/secrets/plugin/depend.zig +244 -0
- package/project/.sdk/tm/zig/feature/secrets/plugin/env.zig +201 -0
- package/project/.sdk/tm/zig/feature/secrets/plugin/export.zig +83 -0
- package/project/.sdk/tm/zig/feature/secrets/plugin/graph.zig +212 -0
- package/project/.sdk/tm/zig/feature/secrets/plugin/host.zig +1224 -0
- package/project/.sdk/tm/zig/feature/secrets/plugin/inst.zig +126 -0
- package/project/.sdk/tm/zig/feature/secrets/plugin/order.zig +228 -0
- package/project/.sdk/tm/zig/feature/secrets/plugin/plugin.zig +34 -0
- package/project/.sdk/tm/zig/feature/secrets/plugin/point.zig +166 -0
- package/project/.sdk/tm/zig/feature/secrets/plugin/ref.zig +147 -0
- package/project/.sdk/tm/zig/feature/secrets/plugin/resolve.zig +74 -0
- package/project/.sdk/tm/zig/feature/secrets/plugin/types.zig +140 -0
- package/project/.sdk/tm/zig/feature/secrets/plugin/value.zig +662 -0
- package/project/.sdk/tm/zig/feature/secrets/plugin/version.zig +139 -0
- package/project/.sdk/tm/zig/feature/secrets/plugins/aws.zig +294 -0
- package/project/.sdk/tm/zig/feature/secrets/plugins/azuresecrets.zig +222 -0
- package/project/.sdk/tm/zig/feature/secrets/plugins/boru.zig +188 -0
- package/project/.sdk/tm/zig/feature/secrets/plugins/doppler.zig +135 -0
- package/project/.sdk/tm/zig/feature/secrets/plugins/gcpsecrets.zig +170 -0
- package/project/.sdk/tm/zig/feature/secrets/plugins/hashicorp.zig +242 -0
- package/project/.sdk/tm/zig/feature/secrets/plugins/httpjson.zig +535 -0
- package/project/.sdk/tm/zig/feature/secrets/plugins/infisical.zig +167 -0
- package/project/.sdk/tm/zig/feature/secrets/plugins/onepassword.zig +202 -0
- package/project/.sdk/tm/zig/feature/secrets/plugins/secretspec.zig +160 -0
- package/project/.sdk/tm/zig/feature/secrets/plugins/sigv4.zig +336 -0
- package/project/.sdk/tm/zig/feature/secrets/sekreto/addr.zig +148 -0
- package/project/.sdk/tm/zig/feature/secrets/sekreto/builtins.zig +259 -0
- package/project/.sdk/tm/zig/feature/secrets/sekreto/provider.zig +440 -0
- package/project/.sdk/tm/zig/feature/secrets/sekreto/sekreto.zig +944 -0
- package/project/.sdk/tm/zig/feature/secrets.zig +854 -0
- package/project/.sdk/tm/zig/src/feature/secrets/.gitkeep +0 -0
- package/project/.sdk/tm/zig/test/feature/secrets/secrets_test.zig +891 -0
- package/project/sdkgen-package.json +1 -1
|
@@ -0,0 +1,242 @@
|
|
|
1
|
+
// VENDORED: @voxgig/sekreto sdk-20260908-1556-0 (zig/plugins/hashicorp.zig)
|
|
2
|
+
// Source: https://github.com/voxgig/sekreto @ 1267ee2e5f49566bc92695bc9eb3a60ef4924998 [tag: sdk-20260908-1556-0]
|
|
3
|
+
// License: MIT (c) voxgig - see repository LICENSE. Do not edit: resync from upstream.
|
|
4
|
+
//! HashiCorp Vault - a sekreto plugin.
|
|
5
|
+
//!
|
|
6
|
+
//! One definition, `hashicorp`, built by `sekreto.providerplugin`: its
|
|
7
|
+
//! `define` reads the spec off the instance and builds the provider
|
|
8
|
+
//! below. Needs HTTPS (and a file read, for a kubernetes JWT), which is
|
|
9
|
+
//! why it is a plugin and not built in: a chain that never names it
|
|
10
|
+
//! never links it.
|
|
11
|
+
|
|
12
|
+
const std = @import("std");
|
|
13
|
+
|
|
14
|
+
const sekreto = @import("sekreto");
|
|
15
|
+
const httpjson = @import("httpjson.zig");
|
|
16
|
+
|
|
17
|
+
const Allocator = std.mem.Allocator;
|
|
18
|
+
const Answer = sekreto.Answer;
|
|
19
|
+
const Found = sekreto.Found;
|
|
20
|
+
const Provider = sekreto.Provider;
|
|
21
|
+
const ProviderSpec = sekreto.ProviderSpec;
|
|
22
|
+
|
|
23
|
+
/// HashiCorp Vault.
|
|
24
|
+
///
|
|
25
|
+
/// KV v2 (the default): `api.token` reads `{addr}/v1/{mount}/data/api` and
|
|
26
|
+
/// takes the `token` field of `data.data`. KV v1 (`kv: 1`) reads
|
|
27
|
+
/// `{addr}/v1/{mount}/api` and takes the field of `data`. A 404 means "not
|
|
28
|
+
/// here" - a miss - so a vault can sit in a chain with fallbacks.
|
|
29
|
+
///
|
|
30
|
+
/// A Vault Enterprise namespace rides the X-Vault-Namespace header, on
|
|
31
|
+
/// logins as well as reads.
|
|
32
|
+
///
|
|
33
|
+
/// Instead of being handed a token, the provider can log in: Kubernetes
|
|
34
|
+
/// auth (the pod's service-account JWT, from its conventional path) or
|
|
35
|
+
/// AppRole. A failed login is an error, never a miss - it means this store
|
|
36
|
+
/// could not answer at all.
|
|
37
|
+
pub const HashicorpProvider = struct {
|
|
38
|
+
alloc: Allocator,
|
|
39
|
+
config: sekreto.Config,
|
|
40
|
+
addr: []const u8,
|
|
41
|
+
token: []const u8,
|
|
42
|
+
mount: []const u8,
|
|
43
|
+
kv: i64,
|
|
44
|
+
vaultnamespace: []const u8,
|
|
45
|
+
auth: ?sekreto.Auth,
|
|
46
|
+
// The working token: a configured token is kept forever, a logged-in
|
|
47
|
+
// token is renewed shortly before its lease runs out.
|
|
48
|
+
livetoken: ?[]const u8,
|
|
49
|
+
renewat: i64,
|
|
50
|
+
|
|
51
|
+
fn baseheaders(self: *HashicorpProvider, alloc: Allocator) Allocator.Error!std.ArrayList(httpjson.Header) {
|
|
52
|
+
var headers: std.ArrayList(httpjson.Header) = .empty;
|
|
53
|
+
if (0 != self.vaultnamespace.len) {
|
|
54
|
+
try headers.append(alloc, .{ .name = "X-Vault-Namespace", .value = self.vaultnamespace });
|
|
55
|
+
}
|
|
56
|
+
return headers;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
fn login(self: *HashicorpProvider, alloc: Allocator) Allocator.Error!Answer([]const u8) {
|
|
60
|
+
const auth = self.auth orelse {
|
|
61
|
+
return .{ .err = try sekreto.fail(alloc, "sekreto: hashicorp: no token and no auth method", .{}) };
|
|
62
|
+
};
|
|
63
|
+
|
|
64
|
+
const mount = if (0 != auth.mount.len) auth.mount else auth.method;
|
|
65
|
+
const url = try std.fmt.allocPrint(
|
|
66
|
+
alloc,
|
|
67
|
+
"{s}/v1/auth/{s}/login",
|
|
68
|
+
.{ httpjson.trimslash(self.addr), mount },
|
|
69
|
+
);
|
|
70
|
+
|
|
71
|
+
var body: []const u8 = undefined;
|
|
72
|
+
|
|
73
|
+
if (std.mem.eql(u8, "kubernetes", auth.method)) {
|
|
74
|
+
const jwt = auth.jwt orelse blk: {
|
|
75
|
+
const file = if (0 != auth.jwtfile.len)
|
|
76
|
+
auth.jwtfile
|
|
77
|
+
else
|
|
78
|
+
"/var/run/secrets/kubernetes.io/serviceaccount/token";
|
|
79
|
+
|
|
80
|
+
const text = std.Io.Dir.cwd().readFileAlloc(
|
|
81
|
+
self.config.io,
|
|
82
|
+
file,
|
|
83
|
+
alloc,
|
|
84
|
+
.unlimited,
|
|
85
|
+
) catch {
|
|
86
|
+
return .{ .err = try sekreto.fail(
|
|
87
|
+
alloc,
|
|
88
|
+
"sekreto: hashicorp: cannot read jwt file {s}",
|
|
89
|
+
.{file},
|
|
90
|
+
) };
|
|
91
|
+
};
|
|
92
|
+
|
|
93
|
+
break :blk std.mem.trim(u8, text, " \t\r\n");
|
|
94
|
+
};
|
|
95
|
+
|
|
96
|
+
body = try httpjson.jsonobject(alloc, &.{
|
|
97
|
+
.{ .key = "role", .value = auth.role },
|
|
98
|
+
.{ .key = "jwt", .value = jwt },
|
|
99
|
+
});
|
|
100
|
+
} else if (std.mem.eql(u8, "approle", auth.method)) {
|
|
101
|
+
body = try httpjson.jsonobject(alloc, &.{
|
|
102
|
+
.{ .key = "role_id", .value = auth.roleid },
|
|
103
|
+
.{ .key = "secret_id", .value = auth.secretid },
|
|
104
|
+
});
|
|
105
|
+
} else {
|
|
106
|
+
return .{ .err = try sekreto.fail(
|
|
107
|
+
alloc,
|
|
108
|
+
"sekreto: hashicorp: unknown auth method: {s}",
|
|
109
|
+
.{auth.method},
|
|
110
|
+
) };
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
var headers = try self.baseheaders(alloc);
|
|
114
|
+
try headers.append(alloc, .{ .name = "content-type", .value = "application/json" });
|
|
115
|
+
|
|
116
|
+
const res = switch (try httpjson.fetchjson(alloc, self.config.io, .POST, url, headers.items, body)) {
|
|
117
|
+
.err => |message| return .{ .err = message },
|
|
118
|
+
.ok => |got| got,
|
|
119
|
+
};
|
|
120
|
+
|
|
121
|
+
const clienttoken = httpjson.jstr(httpjson.jget(httpjson.jget(res.body, "auth"), "client_token"));
|
|
122
|
+
|
|
123
|
+
if (200 != res.status or null == clienttoken) {
|
|
124
|
+
return .{ .err = try sekreto.fail(
|
|
125
|
+
alloc,
|
|
126
|
+
"sekreto: hashicorp login failed: {d}: {s}",
|
|
127
|
+
.{ res.status, url },
|
|
128
|
+
) };
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
self.renewat = httpjson.renewafter(
|
|
132
|
+
self.config.io,
|
|
133
|
+
httpjson.jnum(httpjson.jget(httpjson.jget(res.body, "auth"), "lease_duration")),
|
|
134
|
+
);
|
|
135
|
+
|
|
136
|
+
return .{ .ok = clienttoken.? };
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
pub fn lookup(self: *HashicorpProvider, alloc: Allocator, name: []const u8) Allocator.Error!Found {
|
|
140
|
+
switch (try sekreto.checkaddr(alloc, self.addr)) {
|
|
141
|
+
.err => |message| return .{ .err = message },
|
|
142
|
+
.ok => {},
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
if (null == self.livetoken or httpjson.nowms(self.config.io) >= self.renewat) {
|
|
146
|
+
const fresh = switch (try self.login(alloc)) {
|
|
147
|
+
.err => |message| return .{ .err = message },
|
|
148
|
+
.ok => |got| got,
|
|
149
|
+
};
|
|
150
|
+
try self.settoken(fresh);
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
const ref = switch (try sekreto.vaultref(alloc, name)) {
|
|
154
|
+
.err => |message| return .{ .err = message },
|
|
155
|
+
.ok => |got| got,
|
|
156
|
+
};
|
|
157
|
+
|
|
158
|
+
const url = if (1 == self.kv)
|
|
159
|
+
try std.fmt.allocPrint(alloc, "{s}/v1/{s}/{s}", .{ httpjson.trimslash(self.addr), self.mount, ref.path })
|
|
160
|
+
else
|
|
161
|
+
try std.fmt.allocPrint(alloc, "{s}/v1/{s}/data/{s}", .{ httpjson.trimslash(self.addr), self.mount, ref.path });
|
|
162
|
+
|
|
163
|
+
var headers = try self.baseheaders(alloc);
|
|
164
|
+
try headers.append(alloc, .{ .name = "X-Vault-Token", .value = self.livetoken.? });
|
|
165
|
+
|
|
166
|
+
const res = switch (try httpjson.fetchjson(alloc, self.config.io, .GET, url, headers.items, null)) {
|
|
167
|
+
.err => |message| return .{ .err = message },
|
|
168
|
+
.ok => |got| got,
|
|
169
|
+
};
|
|
170
|
+
|
|
171
|
+
if (404 == res.status) {
|
|
172
|
+
return .{ .ok = null };
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
if (200 != res.status) {
|
|
176
|
+
return .{ .err = try sekreto.fail(
|
|
177
|
+
alloc,
|
|
178
|
+
"sekreto: hashicorp error: {d}: {s}",
|
|
179
|
+
.{ res.status, url },
|
|
180
|
+
) };
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
const data = if (1 == self.kv)
|
|
184
|
+
httpjson.jget(res.body, "data")
|
|
185
|
+
else
|
|
186
|
+
httpjson.jget(httpjson.jget(res.body, "data"), "data");
|
|
187
|
+
|
|
188
|
+
return .{ .ok = httpjson.jstr(httpjson.jget(data, ref.field)) };
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
// The live token outlives one lookup, so it cannot live in the lookup's
|
|
192
|
+
// scratch arena; the previous one is freed as it is replaced.
|
|
193
|
+
fn settoken(self: *HashicorpProvider, token: []const u8) Allocator.Error!void {
|
|
194
|
+
if (self.livetoken) |old| {
|
|
195
|
+
self.alloc.free(old);
|
|
196
|
+
}
|
|
197
|
+
self.livetoken = try self.alloc.dupe(u8, token);
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
pub fn describe(self: *HashicorpProvider, alloc: Allocator) Allocator.Error![]const u8 {
|
|
201
|
+
return std.fmt.allocPrint(alloc, "hashicorp:{s}/{s}", .{ self.addr, self.mount });
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
pub fn deinit(self: *HashicorpProvider, alloc: Allocator) void {
|
|
205
|
+
if (self.livetoken) |token| {
|
|
206
|
+
alloc.free(token);
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
};
|
|
210
|
+
|
|
211
|
+
fn make(alloc: Allocator, config: sekreto.Config, spec: ProviderSpec) Allocator.Error!Answer(Provider) {
|
|
212
|
+
const kv: i64 = if (0 == spec.kv) 2 else spec.kv;
|
|
213
|
+
|
|
214
|
+
// A version typo like kv: 3 must not quietly behave as v2 and turn
|
|
215
|
+
// its 404s into misses; there is nothing safe to assume it meant.
|
|
216
|
+
if (1 != kv and 2 != kv) {
|
|
217
|
+
return .{ .err = try sekreto.fail(
|
|
218
|
+
alloc,
|
|
219
|
+
"sekreto: hashicorp: unsupported kv version: {d}",
|
|
220
|
+
.{kv},
|
|
221
|
+
) };
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
return .{
|
|
225
|
+
.ok = try sekreto.provide(alloc, HashicorpProvider, .{
|
|
226
|
+
.alloc = alloc,
|
|
227
|
+
.config = config,
|
|
228
|
+
.addr = spec.addr,
|
|
229
|
+
.token = spec.token,
|
|
230
|
+
.mount = if (0 != spec.mount.len) spec.mount else "secret",
|
|
231
|
+
.kv = kv,
|
|
232
|
+
.vaultnamespace = spec.vaultnamespace,
|
|
233
|
+
.auth = spec.auth,
|
|
234
|
+
// A configured token is the live token, and is kept forever.
|
|
235
|
+
.livetoken = if (0 == spec.token.len) null else try alloc.dupe(u8, spec.token),
|
|
236
|
+
.renewat = httpjson.NEVER,
|
|
237
|
+
}),
|
|
238
|
+
};
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
/// The `hashicorp` kind.
|
|
242
|
+
pub const hashicorp: sekreto.Definition = sekreto.providerplugin("hashicorp", make);
|