Skip to content

Commit 5422b1a

Browse files
authored
Add S3-compatible backend for Oracle (#99)
1 parent ab934f3 commit 5422b1a

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

modules/remote-state/data-source.tf

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,18 @@ locals {
7272
profile = !coalesce(try(local.backend.privileged, null), var.privileged) && contains(keys(local.backend), "profile") ? local.backend.profile : null
7373

7474
workspace_key_prefix = local.workspace_key_prefix
75+
76+
# S3-compatible backend for Oracle
77+
# source: https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/terraformUsingObjectStore.htm#s3
78+
skip_region_validation = try(local.backend.skip_region_validation, null)
79+
skip_credentials_validation = try(local.backend.skip_credentials_validation, null)
80+
skip_requesting_account_id = try(local.backend.skip_requesting_account_id, null)
81+
use_path_style = try(local.backend.use_path_style, null)
82+
force_path_style = try(local.backend.force_path_style, null)
83+
skip_metadata_api_check = try(local.backend.skip_metadata_api_check, null)
84+
skip_s3_checksum = try(local.backend.skip_s3_checksum, null)
85+
endpoints = try(local.backend.endpoints, null)
86+
endpoint = try(local.backend.endpoint, null)
7587
}
7688

7789
azurerm = local.ds_backend != "azurerm" ? null : {

0 commit comments

Comments
 (0)