// Copyright (c) 2021 Oracle and/or its affiliates. All rights reserved.
// Licensed under the Universal Permissive License v 1.0 as shown
// at http:/oss.oracle.com/licenses/upl.

resource "null_resource" "run__TTTT_" {
  depends_on = [_BBBB_]
  provisioner "remote-exec" {
    connection {
      type = "ssh"
      user = var.remote_user
      agent = false
      host = module.base_instance.instance_private_ip
      timeout = "15m"
      private_key = file(var.ssh_private_key)
    }
    inline = [
      "_SSSS_"
     ]
  }
}