Skip to content

Commit 269b5c7

Browse files
committedOct 12, 2024
fix things
1 parent 7727fdf commit 269b5c7

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed
 

‎terraform/provider.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ terraform {
1717
skip_s3_checksum = true
1818
skip_metadata_api_check = true
1919
endpoints = {
20-
s3 = "https://id8kdbgzbggf.compat.objectstorage.us-ashburn-1.oraclecloud.com"
20+
s3 = var.s3_endpoint
2121
}
2222
}
2323
}

‎terraform/vars.tf

+4
Original file line numberDiff line numberDiff line change
@@ -60,4 +60,8 @@ variable "ubu_ip_address" {
6060

6161
variable "pve2_ip_address" {
6262
type = string
63+
}
64+
65+
variable "s3_endpoint" {
66+
type = string
6367
}

0 commit comments

Comments
 (0)
Please sign in to comment.