-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
19 lines (16 loc) · 962 Bytes
/
.env.example
File metadata and controls
19 lines (16 loc) · 962 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# -----------------------------
# Copy this file to `.env` and fill in the blanks.
# Load it with: set -a; source .env; set +a
# Then run: terraform init && terraform apply -auto-approve
# -----------------------------
# --- OCI auth (from your tenancy) ---
TF_VAR_tenancy_ocid="ocid1.tenancy.oc1..aaaaexample"
TF_VAR_user_ocid="ocid1.user.oc1..aaaaexample"
TF_VAR_fingerprint="aa:bb:cc:dd:ee:ff:11:22:33:44:55:66:77:88:99:00"
TF_VAR_private_key_path="$HOME/.oci/oci_api_key.pem" # Path to your API private key
TF_VAR_region="us-ashburn-1" # Example regions: us-ashburn-1, us-phoenix-1, eu-frankfurt-1
# --- Target compartment & image ---
TF_VAR_compartment_ocid="ocid1.compartment.oc1..aaaaexample"
TF_VAR_image_ocid="ocid1.image.oc1.iad.aaaaexample" # Ubuntu/Oracle Linux ARM64 image OCID for YOUR region
# --- SSH for instance access ---
TF_VAR_ssh_public_key_path="$HOME/.ssh/id_rsa.pub" # Or id_ed25519.pub, etc.