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