Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
title = "\n---$(shell tput bold)$(shell tput setaf 2)$1 $(shell tput sgr0)\n"

init:
@echo $(call title, "Generating KMS key and CMS cert.......")

build:
@echo $(call title, "Building container........")

run:
@echo $(call title, "Running container.........")

dev: init build
20 changes: 20 additions & 0 deletions scripts/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Script to purchase Digitcert signing certificate

Use the shell script in this directory to issue an API request to Digicert requesting a digital certificate.

## Prerequisites

You must set the enviornment variable DIGICERT_API_KEY to the value of your
[Digicert API key](https://dev.digicert.com/en/certcentral-apis/authentication.html).

## Run the script

Enter this command to run the script:

```
./digicert-create-cert.sh <YOUR_EMAIL> <PATH_TO_CSR_FILE>
```

Where:
- `<YOUR_EMAIL>` is the email associated with your Digicert account.
- `<PATH_TO_CSR_FILE>` is the path to the certificate signing request (CSR) file that you're using for your request.