Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Address review comments
Browse files Browse the repository at this point in the history
addyess committed Jan 15, 2025

Verified

This commit was signed with the committer’s verified signature.
addyess Adam Dyess
1 parent a69b722 commit 3355e91
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/src/charm/howto/install/install-terraform.md
Original file line number Diff line number Diff line change
@@ -36,8 +36,8 @@ Example `main.tf`:
```hcl
provider "juju" {}
resource "juju_model" "this" {
name = "juju-myk8s" # name of the juju model
resource "juju_model" "my_model" {
name = "juju-myk8s"
}
variable "k8s" {
@@ -49,14 +49,14 @@ variable "k8s" {
module "k8s" {
source = "git::https://github.com/canonical/k8s-operator//charms/worker/k8s/terraform?ref=main"
model = juju_model.this.name
model = juju_model.my_model.name
channel = var.k8s.channel
units = 3
}
module "k8s-worker" {
source = "git::https://github.com/canonical/k8s-operator//charms/worker/terraform?ref=main"
model = juju_model.this.name
model = juju_model.my_model.name
channel = var.k8s.channel
units = 2
}

0 comments on commit 3355e91

Please sign in to comment.