Skip to content

Commit

Permalink
bump terraform providers
Browse files Browse the repository at this point in the history
  • Loading branch information
aleoli authored and adamjensenbot committed Jan 12, 2024
1 parent adf1ecd commit 22d2004
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions examples/provision-with-terraform/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,19 @@ terraform {
required_providers {
kind = {
source = "tehcyx/kind"
version = "0.0.15"
version = "0.2.1"
}
helm = {
source = "hashicorp/helm"
version = "2.7.1"
version = "2.12.1"
}
kubernetes = {
source = "hashicorp/kubernetes"
version = "2.16.1"
version = "2.25.2"
}
liqo = {
source = "liqotech/liqo"
version = "0.0.1"
version = "0.0.2"
}
}
}
Expand All @@ -25,18 +25,18 @@ provider "helm" {
kubernetes {
config_path = kind_cluster.rome.kubeconfig_path
}

}
provider "helm" {
alias = "milan"
kubernetes {
config_path = kind_cluster.milan.kubeconfig_path
}

}

provider "kubernetes" {
config_path = kind_cluster.rome.kubeconfig_path
}

provider "liqo" {
alias = "rome"
kubernetes = {
Expand Down

0 comments on commit 22d2004

Please sign in to comment.