Skip to content

Commit 6cf4fb7

Browse files
Merge pull request #1668 from oracle/release_gh
Releasing version 4.94.0
2 parents 7bfe368 + 6672ee4 commit 6cf4fb7

File tree

929 files changed

+91300
-755
lines changed

Some content is hidden

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

929 files changed

+91300
-755
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
## 4.94.0 (September 21, 2022)
2+
3+
### Added
4+
- Support for Data Integration Service (DIS) Feature/Enhancement Release - 22b removing one check in test
5+
- Improve Resource discovery error messaging
6+
- Support for Cost Management: Scheduled Reports 2.0
7+
- Terraform support for Activate and Deactivate actions of Model Deployment
8+
- Support for GoldenGate Display Trails and Size
9+
- Support for VBS integration in CDTS
10+
- Support for Oracle Cloud Bridge
11+
- Support for Ingest Time Rules and new optional attributes in Object Collection Rule
12+
- Support for Oracle Cloud Migrations
13+
### Bug Fix
14+
- update the load balancer ports
15+
- Resource discovery bug for export drg route distribution
16+
- Remove Rrset from resource discovery to fix duplicate resource in config
17+
118
## 4.93.0 (September 14, 2022)
219

320
### Added

examples/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,10 @@ This directory contains Terraform configuration files showing how to create spec
3535
[![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/budget.zip)
3636
- certificatesManagement
3737
[![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/certificatesManagement.zip)
38+
- cloudBridge
39+
[![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/cloudBridge.zip)
40+
- cloudMigrations
41+
[![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/cloudMigrations.zip)
3842
- cloudguard
3943
[![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/cloudguard.zip)
4044
- compute
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
// Copyright (c) 2017, 2021, Oracle and/or its affiliates. All rights reserved.
2+
// Licensed under the Mozilla Public License v2.0
3+
4+
variable "tenancy_ocid" {}
5+
variable "user_ocid" {}
6+
variable "fingerprint" {}
7+
variable "private_key_path" {}
8+
variable "region" {}
9+
10+
variable "agent_plugin_desired_state" {
11+
default = "ENABLED"
12+
}
13+
14+
variable "agent_plugin_plugin_name" {
15+
default = "pluginName"
16+
}
17+
18+
19+
20+
provider "oci" {
21+
tenancy_ocid = var.tenancy_ocid
22+
user_ocid = var.user_ocid
23+
fingerprint = var.fingerprint
24+
private_key_path = var.private_key_path
25+
region = var.region
26+
}
27+
28+
resource "oci_cloud_bridge_agent_plugin" "test_agent_plugin" {
29+
#Required
30+
agent_id = oci_cloud_bridge_agent.test_agent.id
31+
plugin_name = var.agent_plugin_plugin_name
32+
33+
#Optional
34+
desired_state = var.agent_plugin_desired_state
35+
}
36+
37+
data "oci_cloud_bridge_agent_plugins" "test_agent_plugins" {
38+
#Required
39+
agent_id = oci_cloud_bridge_agent.test_agent.id
40+
plugin_name = var.agent_plugin_plugin_name
41+
}
42+
Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
// Copyright (c) 2017, 2021, Oracle and/or its affiliates. All rights reserved.
2+
// Licensed under the Mozilla Public License v2.0
3+
4+
variable "tenancy_ocid" {}
5+
variable "user_ocid" {}
6+
variable "fingerprint" {}
7+
variable "private_key_path" {}
8+
variable "region" {}
9+
variable "compartment_id" {}
10+
11+
variable "agent_agent_type" {
12+
default = "APPLIANCE"
13+
}
14+
15+
variable "agent_agent_version" {
16+
default = "agentVersion"
17+
}
18+
19+
variable "agent_defined_tags_value" {
20+
default = "value"
21+
}
22+
23+
variable "agent_display_name" {
24+
default = "displayName"
25+
}
26+
27+
variable "agent_freeform_tags" {
28+
default = { "Department" = "Finance" }
29+
}
30+
31+
variable "agent_os_version" {
32+
default = "osVersion"
33+
}
34+
35+
variable "agent_state" {
36+
default = "AVAILABLE"
37+
}
38+
39+
40+
41+
provider "oci" {
42+
tenancy_ocid = var.tenancy_ocid
43+
user_ocid = var.user_ocid
44+
fingerprint = var.fingerprint
45+
private_key_path = var.private_key_path
46+
region = var.region
47+
}
48+
49+
resource "oci_cloud_bridge_agent" "test_agent" {
50+
#Required
51+
agent_type = var.agent_agent_type
52+
agent_version = var.agent_agent_version
53+
compartment_id = var.compartment_id
54+
display_name = var.agent_display_name
55+
environment_id = oci_cloud_bridge_environment.test_environment.id
56+
os_version = var.agent_os_version
57+
58+
#Optional
59+
defined_tags = map(oci_identity_tag_namespace.tag-namespace1.name.oci_identity_tag.tag1.name, var.agent_defined_tags_value)
60+
freeform_tags = var.agent_freeform_tags
61+
}
62+
63+
data "oci_cloud_bridge_agents" "test_agents" {
64+
#Required
65+
compartment_id = var.compartment_id
66+
67+
#Optional
68+
agent_id = oci_cloud_bridge_agent.test_agent.id
69+
display_name = var.agent_display_name
70+
environment_id = oci_cloud_bridge_environment.test_environment.id
71+
state = var.agent_state
72+
}
73+
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
// Copyright (c) 2017, 2021, Oracle and/or its affiliates. All rights reserved.
2+
// Licensed under the Mozilla Public License v2.0
3+
4+
variable "tenancy_ocid" {}
5+
variable "user_ocid" {}
6+
variable "fingerprint" {}
7+
variable "private_key_path" {}
8+
variable "region" {}
9+
variable "compartment_id" {}
10+
11+
variable "appliance_image_display_name" {
12+
default = "displayName"
13+
}
14+
15+
16+
17+
provider "oci" {
18+
tenancy_ocid = var.tenancy_ocid
19+
user_ocid = var.user_ocid
20+
fingerprint = var.fingerprint
21+
private_key_path = var.private_key_path
22+
region = var.region
23+
}
24+
25+
data "oci_cloud_bridge_appliance_images" "test_appliance_images" {
26+
#Required
27+
compartment_id = var.compartment_id
28+
29+
#Optional
30+
display_name = var.appliance_image_display_name
31+
}
32+
Lines changed: 103 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,103 @@
1+
// Copyright (c) 2017, 2021, Oracle and/or its affiliates. All rights reserved.
2+
// Licensed under the Mozilla Public License v2.0
3+
4+
variable "tenancy_ocid" {}
5+
variable "user_ocid" {}
6+
variable "fingerprint" {}
7+
variable "private_key_path" {}
8+
variable "region" {}
9+
variable "compartment_id" {}
10+
11+
variable "asset_source_are_historical_metrics_collected" {
12+
default = false
13+
}
14+
15+
variable "asset_source_are_realtime_metrics_collected" {
16+
default = false
17+
}
18+
19+
variable "asset_source_defined_tags_value" {
20+
default = "value"
21+
}
22+
23+
variable "asset_source_discovery_credentials_type" {
24+
default = "BASIC"
25+
}
26+
27+
variable "asset_source_display_name" {
28+
default = "displayName"
29+
}
30+
31+
variable "asset_source_freeform_tags" {
32+
default = { "Department" = "Finance" }
33+
}
34+
35+
variable "asset_source_replication_credentials_type" {
36+
default = "BASIC"
37+
}
38+
39+
variable "asset_source_state" {
40+
default = "AVAILABLE"
41+
}
42+
43+
variable "asset_source_system_tags" {
44+
default = "value"
45+
}
46+
47+
variable "asset_source_type" {
48+
default = "VMWARE"
49+
}
50+
51+
variable "asset_source_vcenter_endpoint" {
52+
default = "vcenterEndpoint"
53+
}
54+
55+
56+
57+
provider "oci" {
58+
tenancy_ocid = var.tenancy_ocid
59+
user_ocid = var.user_ocid
60+
fingerprint = var.fingerprint
61+
private_key_path = var.private_key_path
62+
region = var.region
63+
}
64+
65+
resource "oci_cloud_bridge_asset_source" "test_asset_source" {
66+
#Required
67+
assets_compartment_id = oci_identity_compartment.test_compartment.id
68+
compartment_id = var.compartment_id
69+
discovery_credentials {
70+
#Required
71+
secret_id = oci_vault_secret.test_secret.id
72+
type = var.asset_source_discovery_credentials_type
73+
}
74+
environment_id = oci_cloud_bridge_environment.test_environment.id
75+
inventory_id = oci_cloud_bridge_inventory.test_inventory.id
76+
type = var.asset_source_type
77+
vcenter_endpoint = var.asset_source_vcenter_endpoint
78+
79+
#Optional
80+
are_historical_metrics_collected = var.asset_source_are_historical_metrics_collected
81+
are_realtime_metrics_collected = var.asset_source_are_realtime_metrics_collected
82+
defined_tags = map(oci_identity_tag_namespace.tag-namespace1.name.oci_identity_tag.tag1.name, var.asset_source_defined_tags_value)
83+
discovery_schedule_id = oci_cloud_bridge_discovery_schedule.test_discovery_schedule.id
84+
display_name = var.asset_source_display_name
85+
freeform_tags = var.asset_source_freeform_tags
86+
replication_credentials {
87+
#Required
88+
secret_id = oci_vault_secret.test_secret.id
89+
type = var.asset_source_replication_credentials_type
90+
}
91+
system_tags = var.asset_source_system_tags
92+
}
93+
94+
data "oci_cloud_bridge_asset_sources" "test_asset_sources" {
95+
#Required
96+
compartment_id = var.compartment_id
97+
98+
#Optional
99+
asset_source_id = oci_cloud_bridge_asset_source.test_asset_source.id
100+
display_name = var.asset_source_display_name
101+
state = var.asset_source_state
102+
}
103+

0 commit comments

Comments
 (0)