Skip to content

Commit

Permalink
Merge pull request #7 from sr33hari/staging
Browse files Browse the repository at this point in the history
variable names
  • Loading branch information
sr33hari authored Jul 11, 2024
2 parents 15aa142 + a5a2ace commit 96151b9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
terraform.tfvars
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
Expand Down Expand Up @@ -164,4 +165,3 @@ cython_debug/
.DS_Store

set_google_env.sh
terraform.tfvars
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ resource "google_compute_instance" "circle_instance" {
image: ${var.region}-docker.pkg.dev/${var.project_id}/${var.repository_id}/circle-app:${var.image_tag}
env:
- name: MONGO_URI
value: ${var.mongo_uri}
value: ${var.MONGO_URI}
- name: GOOGLE_TYPE
value: ${var.GOOGLE_TYPE}
- name: GOOGLE_PROJECT_ID
Expand Down
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ variable "image_tag" {
default = "latest"
}

variable "mongo_uri" {
variable "MONGO_URI" {
description = "MongoDB URI for the application"
type = string
}
Expand Down

0 comments on commit 96151b9

Please sign in to comment.