Attention: this is the key used to sign the certificate requests, anyone holding this can sign certificates on your behalf. So keep it in a safe place!
openssl genrsa -des3 -out rootCA.key 4096
import yaml | |
import json | |
from jsonschema import validate, ValidationError | |
with open('values.yaml', 'r') as yaml_file: | |
yaml_content = yaml.safe_load(yaml_file) | |
json_content = json.dumps(yaml_content) | |
print(json_content) |
from __future__ import print_function, unicode_literals | |
import calendar | |
import datetime | |
from collections import defaultdict | |
import boto3 |