Unable to open file "lb.sql" when using Terraform resource "null_resource" "sqlcl-liquibase"

42 Views Asked by At

I'm using OCI DevOps and terraform to create DB and run liquibase changelog against it. After the DB created and wallet and connected to DB successfully I'm receiving this Error: unable to open file "lb.sql" My Terraform script is:

resource "null_resource" "sqlcl-liquibase" {

  provisioner "local-exec" {
    command     = <<-EOT
    ./sqlcl/bin/sql -cloudconfig wallet.zip admin/${random_string.password.result}@sandboxProd_high @lb.sql
    EOT
    working_dir = path.module
  }

  depends_on = [
    local_file.autonomous_database_wallet_file,
  ]
}
0

There are 0 best solutions below