From 269b5c769054dfce9735077ce7f5a41863b31a75 Mon Sep 17 00:00:00 2001 From: Matt Reeves Date: Sat, 12 Oct 2024 13:27:33 -0400 Subject: [PATCH] fix things --- terraform/provider.tf | 2 +- terraform/vars.tf | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/terraform/provider.tf b/terraform/provider.tf index 329423e..e76e1b8 100644 --- a/terraform/provider.tf +++ b/terraform/provider.tf @@ -17,7 +17,7 @@ terraform { skip_s3_checksum = true skip_metadata_api_check = true endpoints = { - s3 = "https://id8kdbgzbggf.compat.objectstorage.us-ashburn-1.oraclecloud.com" + s3 = var.s3_endpoint } } } diff --git a/terraform/vars.tf b/terraform/vars.tf index c3e39f7..60ca8e4 100644 --- a/terraform/vars.tf +++ b/terraform/vars.tf @@ -60,4 +60,8 @@ variable "ubu_ip_address" { variable "pve2_ip_address" { type = string +} + +variable "s3_endpoint" { + type = string } \ No newline at end of file