Terraforming for exporting aws resources to tf*

This commit is contained in:
Morgan 2019-10-07 14:29:44 +02:00 committed by GitHub
parent dd9a32c3bc
commit 470bf306c5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1536,6 +1536,7 @@ A small group of programmers wants to change how we code—before catastrophe st
* [AWS Trusted Advisor](https://console.aws.amazon.com/trustedadvisor) - Think of Trusted Advisor as a tool to help you plan new infrastructure, optimize existing ones, or simply run scans to make sure your deployments meet the AWS security standards. Given how hard it is to do this on even a single server manually, Trusted Advisor is one of the hidden gems among lesser-known AWS offerings. * [AWS Trusted Advisor](https://console.aws.amazon.com/trustedadvisor) - Think of Trusted Advisor as a tool to help you plan new infrastructure, optimize existing ones, or simply run scans to make sure your deployments meet the AWS security standards. Given how hard it is to do this on even a single server manually, Trusted Advisor is one of the hidden gems among lesser-known AWS offerings.
* [donnemartin/saws](https://github.com/donnemartin/saws) - A supercharged AWS command line interface (CLI). * [donnemartin/saws](https://github.com/donnemartin/saws) - A supercharged AWS command line interface (CLI).
* [Rodion Chachura](https://medium.com/@geekrodion/system-testing-localstack-terraforms-37b31ba99310) - (2018) System testing: Localstack + Terraform * [Rodion Chachura](https://medium.com/@geekrodion/system-testing-localstack-terraforms-37b31ba99310) - (2018) System testing: Localstack + Terraform
* [dtan4/terraforming](https://github.com/dtan4/terraforming) - Terraforming allows to export existing AWS resources to Terraform style (tf, tfstate)
> Tips > Tips
* [AWS Docs](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-instance-addressing.html) - determine your instance's IPv4 addresses using instance metadata : * [AWS Docs](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-instance-addressing.html) - determine your instance's IPv4 addresses using instance metadata :
@ -1543,6 +1544,7 @@ A small group of programmers wants to change how we code—before catastrophe st
2. Use the following command to get its private IP address: `curl http://169.254.169.254/latest/meta-data/local-ipv4` 2. Use the following command to get its private IP address: `curl http://169.254.169.254/latest/meta-data/local-ipv4`
3. Use the following command to get its public IP address: `curl http://169.254.169.254/latest/meta-data/public-ipv4` 3. Use the following command to get its public IP address: `curl http://169.254.169.254/latest/meta-data/public-ipv4`
## Bitbucket ## Bitbucket
* [Atlassian Docs](https://developer.atlassian.com/stash/docs/latest/how-tos/updating-build-status-for-commits.html) - Updating build status for commits * [Atlassian Docs](https://developer.atlassian.com/stash/docs/latest/how-tos/updating-build-status-for-commits.html) - Updating build status for commits
* [Atlassian Docs](https://confluence.atlassian.com/bitbucketserver/setting-up-ssh-port-forwarding-776640364.html) - Setting up SSH port forwarding (for BitBucket or other git server) * [Atlassian Docs](https://confluence.atlassian.com/bitbucketserver/setting-up-ssh-port-forwarding-776640364.html) - Setting up SSH port forwarding (for BitBucket or other git server)
@ -2080,6 +2082,7 @@ See also [Infrastructure](#infrastructure)
> - the lack of locking for Terraform state > - the lack of locking for Terraform state
> - the lack of a way to configure your Terraform state as code. > - the lack of a way to configure your Terraform state as code.
> - how to keep your Terraform code DRY and maintainable... > - how to keep your Terraform code DRY and maintainable...
* [dtan4/terraforming](https://github.com/dtan4/terraforming) - Terraforming allows to export existing AWS resources to Terraform style (tf, tfstate)
## Travis CI ## Travis CI
* [Tavis CI Docs](https://docs.travis-ci.com/user/common-build-problems/#Troubleshooting-Locally-in-a-Docker-Image) - Troubleshooting Locally in a Docker Image, useful if you have troubles with travis CI * [Tavis CI Docs](https://docs.travis-ci.com/user/common-build-problems/#Troubleshooting-Locally-in-a-Docker-Image) - Troubleshooting Locally in a Docker Image, useful if you have troubles with travis CI