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 | |
| set -euf -o pipefail | |
| ## Fresh linux bootstrap | |
| # Copy this file to the new machine | |
| # Should only be used on "local" workstations. | |
| # Modify the parameters below | |
| HOSTNAME=`hostname` |
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 | |
| if [ "$AWS_PROFILE" = "" ]; then | |
| echo "No AWS_PROFILE set" | |
| exit 1 | |
| fi | |
| LIVERUN=false | |
| if [ "$1" == "confirm" ]; then |
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
| 2019/07/29 23:06:11 [INFO] Terraform version: 0.11.14 | |
| 2019/07/29 23:06:11 [INFO] Go runtime version: go1.12.4 | |
| 2019/07/29 23:06:11 [INFO] CLI args: []string{"/home/asalvo/.manus/software/terraform/versions/0.11.14/terraform", "plan"} | |
| 2019/07/29 23:06:11 [DEBUG] Attempting to open CLI config file: /home/asalvo/.terraformrc | |
| 2019/07/29 23:06:11 Loading CLI configuration from /home/asalvo/.terraformrc | |
| 2019/07/29 23:06:11 [INFO] CLI command args: []string{"plan"} | |
| 2019/07/29 23:06:11 [TRACE] Preserving existing state lineage "87abf53f-e4ff-899f-6954-3670f0c57325" | |
| 2019/07/29 23:06:11 [TRACE] Preserving existing state lineage "87abf53f-e4ff-899f-6954-3670f0c57325" | |
| 2019/07/29 23:06:11 [DEBUG] Service discovery for app.terraform.io at https://app.terraform.io/.well-known/terraform.json | |
| 2019/07/29 23:06:11 [DEBUG] Retrieve version constraints for service tfe.v2.1 and product terraform |
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 python | |
| """ | |
| Recipe for creating and updating security groups programmatically. | |
| """ | |
| import collections | |
| import boto |
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
| base dc=ldap,dc=office | |
| uri ldap://ldap.office | |
| ssl start_tls | |
| tls_cacert /etc/ssl/certs/CA.pem |