terraform-aws-access/examples/basic
matttrach 68be7e1120
add the option to set the availability zone when generating a subnet and test
Signed-off-by: matttrach <matttrach@gmail.com>
2023-09-26 17:05:24 -05:00
..
README.md adding workflows, codeowners, using terratest to generate obects for testing, add verions.tf 2023-08-11 15:07:41 -05:00
main.tf add the option to set the availability zone when generating a subnet and test 2023-09-26 17:05:24 -05:00
outputs.tf initial 2023-07-10 10:45:06 -05:00
variables.tf adding workflows, codeowners, using terratest to generate obects for testing, add verions.tf 2023-08-11 15:07:41 -05:00
versions.tf adding workflows, codeowners, using terratest to generate obects for testing, add verions.tf 2023-08-11 15:07:41 -05:00

README.md

Basic Example

This example has been validated using Terratest, a Go sdk and test suite for Terraform. This example deploys a new VPC in your default region, then a subnet within that VPC, a new SSH key to access servers, and a new security group to restrict server access.

NOTE: It is important to note that this module doesn't generate an ssh key, it imports a given public key to AWS. This is because you will need the private key added to your ssh agent, this module (as well as others we create) rely on the security built into open-ssh to manage ssh keys.

Check out the basic_test.go for a simple way to generate a key to hand to this module using the Terratest ssh module.