Skip to content

Commit 4fba76a

Browse files
Merge pull request #1605 from oracle/release_gh
Releasing version 4.78.0
2 parents 5013479 + 18f64b7 commit 4fba76a

File tree

413 files changed

+12671
-615
lines changed

Some content is hidden

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

413 files changed

+12671
-615
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
## 4.78.0 (June 01, 2022)
2+
3+
### Added
4+
- Support for License Manager service
5+
- Support for Customizable realm name
6+
- Support for ExaCC CPS offline diagnostic report
7+
- support for flexible shapes
8+
- support for optional Kubernetes version when creating a node pool
9+
- Support for OKE Fault domain placement
10+
- Changes for list dbusers and sql tuning recommendations
11+
- Support for Auto Attach iSCSI Volumes through OCA
12+
- Support for Capacity Reservation for OCVP
13+
### Bug Fix
14+
- Add nsgIds, tags and etc in updateNodePool request
15+
- Updated description for base64encoded_content in documentation for oci_devops_deploy_artifact
16+
117
## 4.77.0 (May 25, 2022)
218

319
### Added

examples/container_engine/tagging/main.tf

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -272,6 +272,8 @@ resource "oci_containerengine_node_pool" "test_node_pool" {
272272
#Required
273273
availability_domain = data.oci_identity_availability_domain.ad1.name
274274
subnet_id = oci_core_subnet.nodePool_Subnet_1.id
275+
#optional
276+
fault_domains = ["FAULT-DOMAIN-1", "FAULT-DOMAIN-3"]
275277
}
276278
size = var.node_pool_node_config_details_size
277279

examples/database/exadata_cc/exadata-infrastructure.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ resource "oci_database_exadata_infrastructure" "test_exadata_infrastructure" {
4747
activation_file = "activation.zip"
4848
storage_count = 3
4949
compute_count = 2
50+
is_cps_offline_report_enabled = false
5051

5152
#Optional
5253
contacts {

examples/dataflow/main.tf

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -200,6 +200,32 @@ resource "oci_dataflow_application" "test_application" {
200200
metastore_id = var.metastore_id
201201
}
202202

203+
resource "oci_dataflow_application" "test_flex_application" {
204+
compartment_id = var.compartment_id
205+
206+
display_name = "test_wordcount_app_flex"
207+
driver_shape = "VM.Standard.E4.Flex"
208+
executor_shape = "VM.Standard.E4.Flex"
209+
210+
driver_shape_config {
211+
ocpus = 1
212+
memory_in_gbs = 16
213+
}
214+
executor_shape_config {
215+
ocpus = 1
216+
memory_in_gbs = 16
217+
}
218+
219+
file_uri = var.application_file_uri
220+
221+
language = "PYTHON"
222+
logs_bucket_uri = var.dataflow_logs_bucket_uri
223+
num_executors = "1"
224+
225+
spark_version = "2.4"
226+
warehouse_bucket_uri = var.dataflow_warehouse_bucket_uri
227+
}
228+
203229
resource "oci_dataflow_invoke_run" "test_invoke_run" {
204230
application_id = oci_dataflow_application.test_application.id
205231
compartment_id = var.compartment_id
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
variable "configuration_email_ids" {
2+
default = ["[email protected]"]
3+
}
4+
5+
resource "oci_license_manager_configuration" "test_configuration" {
6+
#Required
7+
compartment_id = var.tenancy_ocid
8+
#Optional
9+
email_ids = var.configuration_email_ids
10+
}
11+
12+
data "oci_license_manager_configuration" "test_configurations" {
13+
#Required
14+
compartment_id = var.tenancy_ocid
15+
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
data "oci_license_manager_license_metric" "test_license_metrics" {
2+
#Required
3+
compartment_id = var.tenancy_ocid
4+
5+
#Optional
6+
is_compartment_id_in_subtree = var.is_compartment_id_in_subtree
7+
}
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
variable "license_record_display_name" {
2+
default = "License Record"
3+
}
4+
5+
variable "license_record_expiration_date" {
6+
default = "2199-06-30T23:59:59.000Z"
7+
}
8+
9+
variable "license_record_freeform_tags" {
10+
default = { "bar-key" = "value" }
11+
}
12+
13+
variable "license_record_is_perpetual" {
14+
default = false
15+
}
16+
17+
variable "license_record_is_unlimited" {
18+
default = false
19+
}
20+
21+
variable "license_record_license_count" {
22+
default = 10
23+
}
24+
25+
variable "license_record_support_end_date" {
26+
default = "2199-06-30T23:59:59.000Z"
27+
}
28+
29+
variable "product_id" {
30+
default = "1234"
31+
}
32+
33+
resource "oci_license_manager_license_record" "test_license_record" {
34+
#Required
35+
display_name = var.license_record_display_name
36+
is_perpetual = var.license_record_is_perpetual
37+
is_unlimited = var.license_record_is_unlimited
38+
product_license_id = oci_license_manager_product_license.test_product_license.id
39+
40+
#Optional
41+
expiration_date = var.license_record_expiration_date
42+
freeform_tags = var.license_record_freeform_tags
43+
license_count = var.license_record_license_count
44+
product_id = var.product_id
45+
support_end_date = var.license_record_support_end_date
46+
}
47+
48+
data "oci_license_manager_license_records" "test_license_records" {
49+
#Required
50+
product_license_id = oci_license_manager_product_license.test_product_license.id
51+
}
Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
variable "product_license_display_name" {
2+
default = "Oracle Database Enterprise Edition"
3+
}
4+
5+
variable "product_license_freeform_tags" {
6+
default = { "bar-key" = "value" }
7+
}
8+
9+
variable "product_license_is_vendor_oracle" {
10+
default = true
11+
}
12+
13+
variable "product_license_license_unit" {
14+
default = "NAMED_USER_PLUS"
15+
}
16+
17+
variable "product_license_vendor_name" {
18+
default = "Oracle"
19+
}
20+
21+
resource "oci_license_manager_product_license" "test_product_license" {
22+
#Required
23+
compartment_id = var.tenancy_ocid
24+
display_name = var.product_license_display_name
25+
is_vendor_oracle = var.product_license_is_vendor_oracle
26+
license_unit = var.product_license_license_unit
27+
28+
#Optional
29+
freeform_tags = var.product_license_freeform_tags
30+
images {
31+
#Required
32+
listing_id = data.oci_marketplace_listing.test_listing.listing_id
33+
package_version = data.oci_marketplace_listing.test_listing.default_package_version
34+
}
35+
vendor_name = var.product_license_vendor_name
36+
}
37+
38+
data "oci_marketplace_listing" "test_listing" {
39+
# listing_id = data.oci_marketplace_listings.test_listings.listings[0].id
40+
listing_id = "101747862"
41+
}
42+
43+
data "oci_marketplace_listings" "test_listings" {
44+
category = ["Analytics"]
45+
compartment_id = var.tenancy_ocid
46+
}
47+
48+
data "oci_license_manager_product_licenses" "test_product_licenses" {
49+
#Required
50+
compartment_id = var.tenancy_ocid
51+
52+
#Optional
53+
is_compartment_id_in_subtree = var.is_compartment_id_in_subtree
54+
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
data "oci_license_manager_product_license_consumers" "test_product_license_consumers" {
2+
#Required
3+
compartment_id = var.tenancy_ocid
4+
product_license_id = oci_license_manager_product_license.test_product_license.id
5+
6+
#Optional
7+
is_compartment_id_in_subtree = var.is_compartment_id_in_subtree
8+
}
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
// Copyright (c) 2017, 2021, Oracle and/or its affiliates. All rights reserved.
2+
// Licensed under the Mozilla Public License v2.0
3+
4+
/*
5+
* This example file shows how to configure the oci provider to target a single region.
6+
*/
7+
8+
// These variables would commonly be defined as environment variables or sourced in a .env file
9+
variable "tenancy_ocid" {
10+
}
11+
12+
variable "user_ocid" {
13+
}
14+
15+
variable "fingerprint" {
16+
}
17+
18+
variable "private_key_path" {
19+
}
20+
21+
variable "compartment_id" {
22+
}
23+
24+
variable "region" {
25+
default = "us-ashburn-1"
26+
}
27+
28+
variable "is_compartment_id_in_subtree" {
29+
default = false
30+
}
31+
32+
provider "oci" {
33+
region = var.region
34+
tenancy_ocid = var.tenancy_ocid
35+
user_ocid = var.user_ocid
36+
fingerprint = var.fingerprint
37+
private_key_path = var.private_key_path
38+
}
39+

0 commit comments

Comments
 (0)