Skip to content

Commit

Permalink
Merge pull request #3 from edgefarm/provider-update
Browse files Browse the repository at this point in the history
chore: upgrade helm and rancher2 providers
  • Loading branch information
batthebee authored Apr 20, 2022
2 parents 5d69667 + 8698f34 commit 1c87c51
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ terraform {
required_providers {
helm = {
source = "hashicorp/helm"
version = "2.3.0"
version = "2.5.1"
}
rancher2 = {
source = "rancher/rancher2"
version = "1.17.2"
version = "1.23.0"
}
}
}
Expand Down Expand Up @@ -94,7 +94,7 @@ resource "helm_release" "rancher" {
resource "rancher2_bootstrap" "setup_admin" {
provider = rancher2.bootstrap
password = var.rancher_admin_password
current_password = var.rancher_admin_password
initial_password = var.rancher_admin_password
telemetry = true
depends_on = [helm_release.rancher]
}
Expand All @@ -103,7 +103,7 @@ resource "rancher2_node_driver" "hetzner_node_driver" {
provider = rancher2.admin
active = true
builtin = false
name = "Hetzner"
name = "hetzner"
ui_url = "https://storage.googleapis.com/hcloud-rancher-v2-ui-driver/component.js"
url = "https://github.com/JonasProgrammer/docker-machine-driver-hetzner/releases/download/3.3.1/docker-machine-driver-hetzner_3.3.1_linux_amd64.tar.gz"
whitelist_domains = ["storage.googleapis.com"]
Expand Down

0 comments on commit 1c87c51

Please sign in to comment.