These are field notes gathered during installation of website search facility for the ElasticSearch website.
You may re-use it to put a similar system in place.
The following assumes:
#!/usr/bin/env bash | |
set -e | |
# Default configuration | |
DRY_RUN=false | |
# Parse command line arguments | |
while [[ "$#" -gt 0 ]]; do | |
case $1 in | |
-h|--help) |
package main | |
import ( | |
"bytes" | |
"flag" | |
"fmt" | |
"github.com/aws/aws-sdk-go/aws/credentials" | |
"github.com/aws/aws-sdk-go/aws/signer/v4" | |
"github.com/aws/aws-sdk-go/private/protocol/rest" | |
"io/ioutil" |
These are field notes gathered during installation of website search facility for the ElasticSearch website.
You may re-use it to put a similar system in place.
The following assumes: