Skip to content

Commit 8f52dbd

Browse files
authored
Merge pull request #1809 from oracle/release_gh
Releasing version 4.112.0
2 parents 3a2aeaa + ae7f93b commit 8f52dbd

File tree

888 files changed

+192378
-532
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

888 files changed

+192378
-532
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
## 4.112.0 (March 15, 2023)
2+
3+
### Added
4+
- Support for GoldenGate Maintenance
5+
- Platform Config support for AMD Milan GPU
6+
- Support for SDK generation for IDCS APIs
7+
- Support for BM/VM | OS Patching Support
8+
### Bug Fix
9+
- Investigate Replication Resource Discovery
10+
- Fixed response reordering issue in Network Firewall
11+
112
## 4.111.0 (March 08, 2023)
213

314
### Added

examples/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,8 @@ This directory contains Terraform configuration files showing how to create spec
101101
[![Deploy to Oracle Cloud](https://oci-resourcemanager-plugin.plugins.oci.oraclecloud.com/latest/deploy-to-oracle-cloud.svg)](https://cloud.oracle.com/resourcemanager/stacks/create?zipUrl=https://github.com/oracle/terraform-provider-oci/raw/master/examples/zips/identity.zip)
102102
- identity_data_plane
103103
[![Deploy to Oracle Cloud](https://oci-resourcemanager-plugin.plugins.oci.oraclecloud.com/latest/deploy-to-oracle-cloud.svg)](https://cloud.oracle.com/resourcemanager/stacks/create?zipUrl=https://github.com/oracle/terraform-provider-oci/raw/master/examples/zips/identity_data_plane.zip)
104+
- identity_domains
105+
[![Deploy to Oracle Cloud](https://oci-resourcemanager-plugin.plugins.oci.oraclecloud.com/latest/deploy-to-oracle-cloud.svg)](https://cloud.oracle.com/resourcemanager/stacks/create?zipUrl=https://github.com/oracle/terraform-provider-oci/raw/master/examples/zips/identity_domains.zip)
104106
- integration
105107
[![Deploy to Oracle Cloud](https://oci-resourcemanager-plugin.plugins.oci.oraclecloud.com/latest/deploy-to-oracle-cloud.svg)](https://cloud.oracle.com/resourcemanager/stacks/create?zipUrl=https://github.com/oracle/terraform-provider-oci/raw/master/examples/zips/integration.zip)
106108
- jms

examples/goldengate/Deployment/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ variable "deployment_description" {
2121
}
2222

2323
variable "deployment_display_name" {
24-
default = "displayName"
24+
default = "TERRAFORM_backward_compatibility_test"
2525
}
2626

2727
variable "deployment_fqdn" {

examples/identity_domains/README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Overview
2+
This is a Terraform configuration that creates the `identity_domains` service on Oracle Cloud Infrastructure.
3+
4+
The Terraform code is used to create a Resource Manager stack, that creates the required resources and configures the application on the created resources.
5+
## Magic Button
6+
[![Deploy to Oracle Cloud](https://oci-resourcemanager-plugin.plugins.oci.oraclecloud.com/latest/deploy-to-oracle-cloud.svg)](https://cloud.oracle.com/resourcemanager/stacks/create?zipUrl=https://github.com/oracle/terraform-provider-oci/raw/master/examples/zips/identity_domains.zip)

examples/identity_domains/api_key.tf

Lines changed: 87 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
// Copyright (c) 2017, 2023, Oracle and/or its affiliates. All rights reserved.
2+
// Licensed under the Mozilla Public License v2.0
3+
4+
variable "api_key_api_key_count" {
5+
default = 10
6+
}
7+
8+
variable "api_key_authorization" {
9+
default = "authorization"
10+
}
11+
12+
variable "api_key_description" {
13+
default = "description"
14+
}
15+
16+
variable "api_key_fingerprint" {
17+
default = "fingerprint"
18+
}
19+
20+
#provide the public key
21+
variable "api_key_key" {
22+
default = ""
23+
}
24+
25+
variable "api_key_start_index" {
26+
default = 1
27+
}
28+
29+
variable "api_key_tags_key" {
30+
default = "key"
31+
}
32+
33+
variable "api_key_tags_value" {
34+
default = "value"
35+
}
36+
37+
variable "api_key_urnietfparamsscimschemasoracleidcsextensionself_change_user_allow_self_change" {
38+
default = false
39+
}
40+
41+
42+
resource "oci_identity_domains_api_key" "test_api_key" {
43+
#Required
44+
idcs_endpoint = data.oci_identity_domain.test_domain.url
45+
key = var.api_key_key
46+
schemas = ["urn:ietf:params:scim:schemas:oracle:idcs:apikey"]
47+
48+
#Optional
49+
attribute_sets = []
50+
attributes = ""
51+
authorization = var.api_key_authorization
52+
description = var.api_key_description
53+
tags {
54+
#Required
55+
key = var.api_key_tags_key
56+
value = var.api_key_tags_value
57+
}
58+
urnietfparamsscimschemasoracleidcsextensionself_change_user {
59+
60+
#Optional
61+
allow_self_change = var.api_key_urnietfparamsscimschemasoracleidcsextensionself_change_user_allow_self_change
62+
}
63+
user {
64+
65+
#Optional
66+
#use the ocid of the same user set in value
67+
ocid = oci_identity_domains_user.test_user.ocid
68+
#must be a user that exists
69+
value = oci_identity_domains_user.test_user.id
70+
}
71+
}
72+
73+
data "oci_identity_domains_api_keys" "test_api_keys" {
74+
#Required
75+
idcs_endpoint = data.oci_identity_domain.test_domain.url
76+
77+
#Optional
78+
api_key_count = var.api_key_api_key_count
79+
api_key_filter = "user.value eq \"${oci_identity_domains_user.test_user.id}\""
80+
attribute_sets = []
81+
attributes = ""
82+
authorization = var.api_key_authorization
83+
#use the latest if not provided
84+
# resource_type_schema_version = var.user_resource_type_schema_version
85+
start_index = var.api_key_start_index
86+
}
87+
Lines changed: 89 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
// Copyright (c) 2017, 2023, Oracle and/or its affiliates. All rights reserved.
2+
// Licensed under the Mozilla Public License v2.0
3+
4+
variable "auth_token_auth_token_count" {
5+
default = 10
6+
}
7+
8+
variable "auth_token_authorization" {
9+
default = "authorization"
10+
}
11+
12+
variable "auth_token_description" {
13+
default = "description"
14+
}
15+
16+
variable "auth_token_expires_on" {
17+
default = "2030-01-01T00:00:00Z"
18+
}
19+
20+
variable "auth_token_start_index" {
21+
default = 1
22+
}
23+
24+
variable "auth_token_status" {
25+
default = "ACTIVE"
26+
}
27+
28+
variable "auth_token_tags_key" {
29+
default = "key"
30+
}
31+
32+
variable "auth_token_tags_value" {
33+
default = "value"
34+
}
35+
36+
variable "auth_token_urnietfparamsscimschemasoracleidcsextensionself_change_user_allow_self_change" {
37+
default = false
38+
}
39+
40+
41+
resource "oci_identity_domains_auth_token" "test_auth_token" {
42+
#Required
43+
idcs_endpoint = data.oci_identity_domain.test_domain.url
44+
schemas = ["urn:ietf:params:scim:schemas:oracle:idcs:authToken"]
45+
46+
#Optional
47+
attribute_sets = []
48+
attributes = ""
49+
authorization = var.auth_token_authorization
50+
description = var.auth_token_description
51+
expires_on = var.auth_token_expires_on
52+
#use the latest if not provided
53+
# resource_type_schema_version = var.auth_token_resource_type_schema_version
54+
status = var.auth_token_status
55+
tags {
56+
#Required
57+
key = var.auth_token_tags_key
58+
value = var.auth_token_tags_value
59+
}
60+
urnietfparamsscimschemasoracleidcsextensionself_change_user {
61+
62+
#Optional
63+
allow_self_change = var.auth_token_urnietfparamsscimschemasoracleidcsextensionself_change_user_allow_self_change
64+
}
65+
user {
66+
67+
#Optional
68+
#use the ocid of the same user set in value
69+
ocid = oci_identity_domains_user.test_user.ocid
70+
#must be a user that exists
71+
value = oci_identity_domains_user.test_user.id
72+
}
73+
}
74+
75+
data "oci_identity_domains_auth_tokens" "test_auth_tokens" {
76+
#Required
77+
idcs_endpoint = data.oci_identity_domain.test_domain.url
78+
79+
#Optional
80+
auth_token_count = var.auth_token_auth_token_count
81+
auth_token_filter = "user.value eq \"${oci_identity_domains_user.test_user.id}\""
82+
attribute_sets = []
83+
attributes = ""
84+
authorization = var.auth_token_authorization
85+
#use the latest if not provided
86+
# resource_type_schema_version = var.auth_token_resource_type_schema_version
87+
start_index = var.auth_token_start_index
88+
}
89+

0 commit comments

Comments
 (0)