aboutsummaryrefslogtreecommitdiffstats
path: root/compose-resources
diff options
context:
space:
mode:
Diffstat (limited to 'compose-resources')
-rw-r--r--compose-resources/client-configuration.env14
-rwxr-xr-xcompose-resources/ejbca-configuration.sh19
2 files changed, 33 insertions, 0 deletions
diff --git a/compose-resources/client-configuration.env b/compose-resources/client-configuration.env
new file mode 100644
index 00000000..e79aa618
--- /dev/null
+++ b/compose-resources/client-configuration.env
@@ -0,0 +1,14 @@
+#Client envs
+REQUEST_URL=http://aafcert-service:8080/v1/certificate/
+REQUEST_TIMEOUT=1000
+OUTPUT_PATH=/var/certs
+CA_NAME=RA
+#Csr config envs
+COMMON_NAME=onap.org
+ORGANIZATION=Linux-Foundation
+ORGANIZATION_UNIT=ONAP
+LOCATION=San-Francisco
+STATE=California
+COUNTRY=US
+SANS=example.org
+
diff --git a/compose-resources/ejbca-configuration.sh b/compose-resources/ejbca-configuration.sh
new file mode 100755
index 00000000..77f5c555
--- /dev/null
+++ b/compose-resources/ejbca-configuration.sh
@@ -0,0 +1,19 @@
+#!/bin/bash
+
+configureEjbca() {
+ ejbca.sh config cmp addalias --alias cmpRA
+ ejbca.sh config cmp updatealias --alias cmpRA --key operationmode --value ra
+ ejbca.sh ca editca --caname ManagementCA --field cmpRaAuthSecret --value mypassword
+ ejbca.sh config cmp updatealias --alias cmpRA --key responseprotection --value pbe
+ ejbca.sh config cmp dumpalias --alias cmpRA
+ ejbca.sh config cmp addalias --alias cmp
+ ejbca.sh config cmp updatealias --alias cmp --key allowautomatickeyupdate --value true
+ ejbca.sh config cmp updatealias --alias cmp --key responseprotection --value pbe
+ ejbca.sh ra addendentity --username Node123 --dn "CN=Node123" --caname ManagementCA --password mypassword --type 1 --token USERGENERATED
+ ejbca.sh ra setclearpwd --username Node123 --password mypassword
+ ejbca.sh config cmp updatealias --alias cmp --key extractusernamecomponent --value CN
+ ejbca.sh config cmp dumpalias --alias cmp
+ ejbca.sh ca getcacert --caname ManagementCA -f /dev/stdout > cacert.pem
+}
+
+configureEjbca