Skip to content

Commit

Permalink
Merge pull request #293 from jumppad-labs/nicholasjackson-patch-1
Browse files Browse the repository at this point in the history
Update README.md
  • Loading branch information
nicholasjackson committed Apr 27, 2024
2 parents 5ffac8f + 22df1e2 commit 78b9f48
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ resource "k8s_cluster" "k3s" {
}
resource "k8s_config" "fake_service" {
cluster = resource.k8s_cluster.k3s.id
cluster = resource.k8s_cluster.k3s
paths = ["./fake_service.yaml"]
Expand All @@ -67,7 +67,7 @@ resource "k8s_config" "fake_service" {
}
resource "helm" "vault" {
cluster = resource.k8s_cluster.k3s.id
cluster = resource.k8s_cluster.k3s
repository {
name = "hashicorp"
Expand All @@ -89,7 +89,7 @@ resource "ingress" "vault_http" {
port = 18200
target {
id = resource.k8s_cluster.k3s.id
resource = resource.k8s_cluster.k3s
port = 8200
config = {
Expand All @@ -103,7 +103,7 @@ resource "ingress" "fake_service" {
port = 19090
target {
id = resource.k8s_cluster.k3s.id
resource = resource.k8s_cluster.k3s
port = 9090
config = {
Expand Down Expand Up @@ -139,7 +139,7 @@ resource "nomad_cluster" "dev" {
}
resource "nomad_job" "example_1" {
cluster = resource.nomad_cluster.dev.id
cluster = resource.nomad_cluster.dev
paths = ["./app_config/example1.nomad"]
Expand All @@ -153,7 +153,7 @@ resource "ingress" "fake_service_1" {
port = 19090
target {
id = resource.nomad_cluster.dev.id
resource = resource.nomad_cluster.dev
named_port = "http"
config = {
Expand Down

0 comments on commit 78b9f48

Please sign in to comment.