I hereby claim:
- I am dotcipher on github.
- I am dotcipher (https://keybase.io/dotcipher) on keybase.
- I have a public key ASCfejWd3kiLlLs4vIwvAPQC9Pq1bVsDBHhIvphhGVYf4go
To claim this, I am signing this object:
| [automount] | |
| enabled = true | |
| root = /mnt/ | |
| options = "metadata,umask=22,fmask=11" | |
| mountFsTab = false | |
| [network] | |
| generateHosts = true | |
| generateResolvConf = true |
| ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQC5clPFsqt8zDKwBcoJNm4NhTM/BW6ORoWWChiz1VsQTXbRt6sMEFmvxIrw5WPNl5n96XM3nfUYR17t9xuJCy3meigsiXAtQmcasi5jV3SY49FotsrgssQ9KFRAVXpfHeo0x+6aWnlDd0pIhbj+hl7yn2CszSBaYyTLa0iur1+oSgXjCz5MFERFFF1MgWNevdY/r2LVlFNMROLSYD4LuqWhZ/D9iyyJqrh5T4/g2QgcbhFy9VY/XFUG1CrvAvkGfYYlYtG1RM1fZE4RDussx4t0U6RKV2f6DdHzcjzstFpTOddMGyXz5wNDSbMqpP9fkCSG0d7F3lyW/wndWAWgHpDS+9x+L86RAEcE5PPwdTnhV55npcITBZLVZ1uDSpBx8dzYwbba3yEz7BdhRStPKiJb3Z56PzcSrRloW8ZJG4fiEwqEE13xgbkVrpPebhDa0WyDV4ObZyKv50/1dtwua0a4qbaf2FqMstY6iSKddSu2YuC+Ebzb2TOqaKQYXlvPExFeaP0koz7a29I0KZTKNOUscPIEw0PAGJ7CBPk/dtH9QITzoD53PJffJ57hD7B8rdAFSazSdYzkoOkMkB7yAMj2Qf0rcQLx3rei9pv1r5KlktF3FCdA2F/ncCESFuRiDdvTKtUIlTMRDG8OOzxFvclaK39/8tco0kz+0xVVDpYwgw== cody.moore101@gmail.com |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| vpc="vpc-xxxxxxxxxxxxx" | |
| aws ec2 describe-internet-gateways --filters 'Name=attachment.vpc-id,Values='$vpc | grep InternetGatewayId | |
| aws ec2 describe-subnets --filters 'Name=vpc-id,Values='$vpc | grep SubnetId | |
| aws ec2 describe-route-tables --filters 'Name=vpc-id,Values='$vpc | grep RouteTableId | |
| aws ec2 describe-network-acls --filters 'Name=vpc-id,Values='$vpc | grep NetworkAclId | |
| aws ec2 describe-vpc-peering-connections --filters 'Name=requester-vpc-info.vpc-id,Values='$vpc | grep VpcPeeringConnectionId | |
| aws ec2 describe-vpc-endpoints --filters 'Name=vpc-id,Values='$vpc | grep VpcEndpointId | |
| aws ec2 describe-nat-gateways --filter 'Name=vpc-id,Values='$vpc | grep NatGatewayId | |
| aws ec2 describe-security-groups --filters 'Name=vpc-id,Values='$vpc | grep GroupId |
| #!/usr/bin/env bash | |
| # Retags a helm chart in ECR, finding the chart by name and version, | |
| # then updating the version in the Chart.yaml and pushing the new chart to ECR. | |
| # The version it will re-tag as will be a reformatted semver compliant version. | |
| # ** OSX Note: ** | |
| # Make sure to install gnused | |
| # brew install gnused | |
| # Otherwise this won't work with the sed command natively | |
| # sed: 1: "foo-bar ...": invalid command code j |