//TODO
This is the follow up of <<Terraform Quick Start>>
.
github repo
Working with Existing Resources
1 | # Configure an AWS profile with proper credentials |
you can find useful modules out-of-box in Terrafrom public provider registery. For example, gcp kubernetes module:
1 | module "gke" { |
Then someone in the team provisioning some resources on AWS without using Terraform, we want to include them under the Terraform control:
1 | # update terraform config file to include new added resources |