Skip to content

Commit

Permalink
Fix other READMEs
Browse files Browse the repository at this point in the history
  • Loading branch information
ghislainbourgeois committed Oct 9, 2024
1 parent 21cae7e commit 9de047f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 12 deletions.
8 changes: 2 additions & 6 deletions modules/sdcore-k8s/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,15 +70,11 @@ Initialize the provider:
terraform init
```

Create the `terraform.tfvars` file to specify the name of the Juju model to deploy to. Reusing already existing model is not recommended.
Create the `terraform.tfvars` file to specify the name of the Juju model to deploy to. The model needs to be created outside of this module.

```console
cat << EOF | tee terraform.tfvars
data "juju_model" "sdcore_k8s" {
name = "sdcore_k8s"
}

model = data.juju_model.sdcore_k8s.name
model = "my_model_name"

# Customize the configuration variables here if needed
EOF
Expand Down
8 changes: 2 additions & 6 deletions modules/sdcore-user-plane-k8s/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,15 +70,11 @@ Initialize the provider:
terraform init
```

Create the `terraform.tfvars` file to specify the name of the Juju model to deploy to. Reusing already existing model is not recommended.
Create the `terraform.tfvars` file to specify the name of the Juju model to deploy to. The model needs to be created outside of this module.

```console
cat << EOF | tee terraform.tfvars
data "juju_model" "sdcore_upf_k8s" {
name = "sdcore_upf_k8s"
}

model = data.juju_model.sdcore_upf_k8s.name
model = "my_model_name"

# Customize the configuration variables here if needed
EOF
Expand Down

0 comments on commit 9de047f

Please sign in to comment.