diff options
author | Aria <me@aria.rip> | 2023-10-01 22:55:08 +0100 |
---|---|---|
committer | Aria <me@aria.rip> | 2023-10-01 22:55:08 +0100 |
commit | 7045a630996e08c18beb7c3d39e1b2752c8a4ba4 (patch) | |
tree | e539793ccb588433f44cc0e1b52821cb6953a85a /Makefile | |
parent | ca56d194c605ef7ba09f46eff11374b492f83804 (diff) |
a working version with only changing passwords
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -20,13 +20,13 @@ build: start: vault server -dev -log-level=debug -dev-root-token-id=root -dev-plugin-dir=./vault/plugins -integration-test: enable test-config test-role test-rotate test-cred +integration-test: enable test-config test-role test-cred enable: vault secrets enable -path=krb vault-plugin-kerberos-secrets test-config: - vault write krb/config realm=TARDISPROJECT.UK kdc=localhost:88 admin_server=localhost:749 kpasswd_server=localhost:749 username=tcmal password=1234 + vault write krb/config realm=TARDISPROJECT.UK kdc=localhost:88 kpasswd_server=localhost:464 username=test/admin password=1234 test-role: vault write krb/static-role/test principal=test @@ -34,6 +34,9 @@ test-role: test-rotate: vault write -f krb/rotate-static-role/test +test-rotate-root: + vault write -f krb/rotate-root + test-cred: vault read krb/static-cred/test |