-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Playground]Adds terraform eks configuration #20
Conversation
Signed-off-by: Tao liu <[email protected]>
Could we add a doc to explain how to use these *.tf files. what are pre-requisite to run these tf files |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
need doc to explain the input/output for the terraform config, how to use the tf file, when/where to use it.
Signed-off-by: Tao liu <[email protected]>
Added the readme for the guide |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Awesome, LGTM
Signed-off-by: Tao liu <[email protected]>
# | ||
|
||
resource "aws_vpc" "playground-dev" { | ||
cidr_block = "10.0.0.0/16" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nonblocking: add a comment about how this value is decided.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm assuming that range is standard for AWS, I will add comment in the next PR.
# | ||
|
||
data "http" "workstation-external-ip" { | ||
url = "http://ipv4.icanhazip.com" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
any reason why not simply ifconfig
command?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is no special requirement for ipv4.icanhazip.com, it is recommended by terraform aws provider.
Description
Build AWS EKS cluster via terraform configuration. we can easily to build eks cluster via couple terraform commands based on our configuration.
Issues Resolved
Resolve #10
Check List
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
For more information on following Developer Certificate of Origin and signing off your commits, please check here.