Skip to content

Commit 1fe6b14

Browse files
authored
Release 2.0.1 (#22)
* added path module in the backup & restore module
1 parent a728d7f commit 1fe6b14

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

examples/complete/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ module "vpc" {
103103

104104
module "rds-pg" {
105105
source = "squareops/rds-postgresql/aws"
106-
version = "2.0.0"
106+
version = "2.0.1"
107107
name = local.name
108108
db_name = "test"
109109
multi_az = false

modules/db-backup-restore/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ resource "helm_release" "postgresdb_backup" {
1010
count = var.postgresdb_backup_enabled ? 1 : 0
1111
depends_on = [kubernetes_namespace.postgresdb]
1212
name = "postgresdb-backup"
13-
chart = "../../modules/db-backup-restore/backup"
13+
chart = "${path.module}/../../modules/db-backup-restore/backup"
1414
timeout = 600
1515
namespace = var.namespace
1616
values = [
@@ -33,7 +33,7 @@ resource "helm_release" "postgresdb_restore" {
3333
count = var.postgresdb_restore_enabled ? 1 : 0
3434
depends_on = [kubernetes_namespace.postgresdb]
3535
name = "postgresdb-restore"
36-
chart = "../../modules/db-backup-restore/restore"
36+
chart = "${path.module}/../../modules/db-backup-restore/restore"
3737
timeout = 600
3838
namespace = var.namespace
3939
values = [

0 commit comments

Comments
 (0)