This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<!-- aqui definimos a linguagem do site, pr-BR para português, en para english --> | |
<html lang="en"> | |
<!-- na tag head ficam as tags que ditam como esse documento deve se comportar, como o título, estilo, arquivos externos que precisa --> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<!-- este é o título do documento ou página, é ele que aparece na aba do navegador --> | |
<title>Document</title> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
################################################################################ | |
# USAGE: | |
# ./create-acm-certificate.sh [domain] | |
# | |
# DESCRIPTION: | |
# This utility create and validates a certificate in ACM, as well as the | |
# required DNS records for validation. | |
# | |
# The following requirements need to be met in order to use this utility: |