-
Notifications
You must be signed in to change notification settings - Fork 686
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2257 from oracle/release_gh
Releasing OCI Provider v.6.21.0
- Loading branch information
Showing
506 changed files
with
24,042 additions
and
1,281 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
variable "bds_instance_id" { | ||
} | ||
|
||
variable "cluster_admin_password" { | ||
} | ||
|
||
variable "confidential_application_id" { | ||
} | ||
|
||
variable "display_name" { | ||
default = "identityDomainConfig" | ||
} | ||
|
||
variable "identity_domain_id" { | ||
} | ||
|
||
variable "activate_iam_user_sync_configuration_trigger" { | ||
default = "false" | ||
} | ||
|
||
variable "activate_upst_configuration_trigger" { | ||
default = "false" | ||
} | ||
|
||
variable "refresh_confidential_application_trigger" { | ||
default = "false" | ||
} | ||
|
||
variable "refresh_upst_token_exchange_keytab_trigger" { | ||
default = "false" | ||
} | ||
|
||
variable "is_posix_attributes_addition_required" { | ||
default = "false" | ||
} | ||
|
||
variable "confidential_application_id" { | ||
} | ||
|
||
variable "vault_id" { | ||
} | ||
|
||
resource "oci_bds_bds_instance_identity_configuration" "test_bds_instance_identity_configuration" { | ||
bds_instance_id = var.bds_instance_id | ||
cluster_admin_password = var.cluster_admin_password | ||
confidential_application_id = var.confidential_application_id | ||
display_name = var.display_name | ||
identity_domain_id = var.identity_domain_id | ||
activate_iam_user_sync_configuration_trigger = var.activate_iam_user_sync_configuration_trigger | ||
activate_upst_configuration_trigger = var.activate_upst_configuration_trigger | ||
refresh_confidential_application_trigger = var.refresh_confidential_application_trigger | ||
refresh_upst_token_exchange_keytab_trigger = var.refresh_upst_token_exchange_keytab_trigger | ||
|
||
iam_user_sync_configuration_details { | ||
is_posix_attributes_addition_required = var.is_posix_attributes_addition_required | ||
} | ||
|
||
upst_configuration_details { | ||
master_encryption_key_id = var.confidential_application_id | ||
vault_id = var.vault_id | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# $Header$ | ||
# | ||
# Copyright (c) 2024, Oracle and/or its affiliates. All rights reserved. | ||
# | ||
# NAME | ||
# data.tf | ||
# | ||
# USAGE | ||
# Use the following path for the Example & Backward Compatibility tests: database/db_systems/db_vm/db_vm_amd | ||
# NOTES | ||
# Terraform Integration Test: TestResourceDatabaseDBSystemAmdVM | ||
# | ||
# FILE(S) | ||
# database_db_system_resource_amd_vm_test.go | ||
# | ||
# MODIFIED MM/DD/YY | ||
# escabrer 12/12/2024 - Created | ||
|
||
|
||
|
||
data "oci_identity_availability_domains" "test_availability_domains" { | ||
compartment_id = var.tenancy_ocid | ||
} |
Oops, something went wrong.