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
| #!/bin/bash | |
| _SELF="${0##*/}" | |
| _HERE="$(dirname $(realpath ${0}))" | |
| function aws_instance_profile_arn() { | |
| curl -s http://169.254.169.254/2019-10-01/meta-data/iam/info | jq -r .InstanceProfileArn | |
| } | |
| function aws_instance_profile_name() { |
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
| SET SESSION default_with_oids = on; | |
| SET client_min_messages=error; | |
| SET lc_messages to 'en_US.UTF-8'; | |
| SET enable_mergejoin = off; | |
| show standard_conforming_strings; |