Skip to content

Instantly share code, notes, and snippets.

@recursivecodes
Created February 22, 2021 17:49
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 recursivecodes/a4a523845cfb7fb030854c48a73e5d70 to your computer and use it in GitHub Desktop.
Save recursivecodes/a4a523845cfb7fb030854c48a73e5d70 to your computer and use it in GitHub Desktop.
provider.tf
provider "oci" {
    tenancy_ocid = var.tenancy_ocid
    user_ocid = var.user_ocid
    private_key_path = var.private_key_path
    private_key_password = var.private_key_password
    fingerprint = var.fingerprint
    region = var.region
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment