mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 04:19:19 -08:00
28 lines
No EOL
465 B
HCL
28 lines
No EOL
465 B
HCL
variable "tenancy_ocid" {
|
|
type = string
|
|
}
|
|
|
|
variable "user_ocid" {
|
|
type = string
|
|
}
|
|
|
|
variable "private_key" {
|
|
type = string
|
|
}
|
|
|
|
variable "region" {
|
|
type = string
|
|
}
|
|
|
|
variable "fingerprint" {
|
|
type = string
|
|
}
|
|
|
|
# https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/terraformgettingstarted.htm
|
|
provider "oci" {
|
|
tenancy_ocid = var.tenancy_ocid
|
|
user_ocid = var.user_ocid
|
|
private_key = var.private_key
|
|
region = var.region
|
|
fingerprint = var.fingerprint
|
|
} |