Skip to content
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

Changes are done #4

Merged
merged 5 commits into from
Feb 3, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added .DS_Store
Binary file not shown.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
- Udacity AWS Gateway
- [kubectl](https://kubernetes.io/docs/tasks/tools/)
- [awscli](https://aws.amazon.com/cli/)
- [eksctl](https://eksctl.io/introduction/#installation)
- [eksctl](https://eksctl.io/installation/)
- [terraform](https://learn.hashicorp.com/tutorials/terraform/install-cli?in=terraform/aws-get-started)
- [helm](https://www.eksworkshop.com/beginner/060_helm/helm_intro/install/)
- [helm](https://helm.sh/docs/intro/install/)

### Installation

Expand Down Expand Up @@ -122,3 +122,4 @@ terraform destroy
## License

[License](../LICENSE.md)

Binary file added starter/.DS_Store
Binary file not shown.
38 changes: 0 additions & 38 deletions starter/infra/.terraform.lock.hcl

This file was deleted.

2 changes: 1 addition & 1 deletion starter/infra/_config.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
terraform {
backend "s3" {
bucket = "udacity-tf-<first_name>" # Update here with your S3 bucket
bucket = "udacity-sre-terraform-testing" # Update here with your S3 bucket
key = "terraform/terraform.tfstate"
region = "us-east-2"
}
Expand Down
2 changes: 1 addition & 1 deletion starter/infra/modules/eks/eks.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
resource "aws_eks_cluster" "cluster" {
name = "${var.name}-cluster"
version = "1.21"
version = "1.31" # Update this line
role_arn = aws_iam_role.eks_cluster_role.arn

vpc_config {
Expand Down