Skip to content

Commit

Permalink
Build(deps): Bump Invicton-Labs/shell-resource/external
Browse files Browse the repository at this point in the history
Bumps [Invicton-Labs/shell-resource/external](https://github.com/Invicton-Labs/terraform-external-shell-resource) from 0.4.0 to 0.4.1.
- [Release notes](https://github.com/Invicton-Labs/terraform-external-shell-resource/releases)
- [Commits](Invicton-Labs/terraform-external-shell-resource@v0.4.0...v0.4.1)

---
updated-dependencies:
- dependency-name: Invicton-Labs/shell-resource/external
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored and remche committed Mar 30, 2023
1 parent a55eff9 commit 98c15b7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions kubernetes.tf
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ resource "null_resource" "write_kubeconfig" {

module "host" {
source = "Invicton-Labs/shell-resource/external"
version = "0.4.0"
version = "0.4.1"
count = var.output_kubernetes_config ? 1 : 0
command_unix = "${local.ssh} ${var.system_user}@${module.server.floating_ip[0]} sudo KUBECONFIG=/etc/rancher/rke2/rke2-remote.yaml /var/lib/rancher/rke2/bin/kubectl config view --raw=true -o jsonpath='{.clusters[0].cluster.server}'"
depends_on = [
Expand All @@ -29,7 +29,7 @@ module "host" {

module "client_certificate" {
source = "Invicton-Labs/shell-resource/external"
version = "0.4.0"
version = "0.4.1"
count = var.output_kubernetes_config ? 1 : 0
command_unix = "${local.ssh} ${var.system_user}@${module.server.floating_ip[0]} sudo KUBECONFIG=/etc/rancher/rke2/rke2-remote.yaml /var/lib/rancher/rke2/bin/kubectl config view --raw=true -o jsonpath='{.users[0].user.client-certificate-data}'"
depends_on = [
Expand All @@ -39,7 +39,7 @@ module "client_certificate" {

module "client_key" {
source = "Invicton-Labs/shell-resource/external"
version = "0.4.0"
version = "0.4.1"
count = var.output_kubernetes_config ? 1 : 0
command_unix = "${local.ssh} ${var.system_user}@${module.server.floating_ip[0]} sudo KUBECONFIG=/etc/rancher/rke2/rke2-remote.yaml /var/lib/rancher/rke2/bin/kubectl config view --raw=true -o jsonpath='{.users[0].user.client-key-data}'"
depends_on = [
Expand All @@ -49,7 +49,7 @@ module "client_key" {

module "cluster_ca_certificate" {
source = "Invicton-Labs/shell-resource/external"
version = "0.4.0"
version = "0.4.1"
count = var.output_kubernetes_config ? 1 : 0
command_unix = "${local.ssh} ${var.system_user}@${module.server.floating_ip[0]} sudo KUBECONFIG=/etc/rancher/rke2/rke2-remote.yaml /var/lib/rancher/rke2/bin/kubectl config view --raw=true -o jsonpath='{.clusters[0].cluster.certificate-authority-data}'"
depends_on = [
Expand Down

0 comments on commit 98c15b7

Please sign in to comment.