Skip to content

Instantly share code, notes, and snippets.

@sw-samuraj
Created August 21, 2020 14:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sw-samuraj/6763565ac244d06455d4cf3eb7a6bba1 to your computer and use it in GitHub Desktop.
Save sw-samuraj/6763565ac244d06455d4cf3eb7a6bba1 to your computer and use it in GitHub Desktop.
provider "oci" {
version = "~> 3.88"
tenancy_ocid = var.tenancy_ocid
user_ocid = var.user_ocid
fingerprint = var.fingerprint
private_key_path = var.private_key_path
region = var.region
}
data "oci_bds_bds_instance" "tf_bds_instance" {
#Required
bds_instance_id = "ocid1.bigdataservice.oc1.iad.amaaaaaapvq3y5aa6py23yw6bjek7isvysriu42u4yghwvs75jbxs3baxlja"
}
output "tf_bds_instance" {
value = data.oci_bds_bds_instance.tf_bds_instance
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment