Skip to content

Commit 08af69f

Browse files
Merge pull request #1641 from oracle/release_gh
Releasing version v4.86.0
2 parents ad01a8b + b47dadf commit 08af69f

File tree

322 files changed

+7755
-595
lines changed

Some content is hidden

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

322 files changed

+7755
-595
lines changed

.github/workflows/examples.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,15 +45,22 @@ jobs:
4545
4646
- name: Create README files
4747
run: |
48+
if [ -d "./examples/zips" ]; then
49+
rm -r examples/zips
50+
fi
51+
mkdir -p examples/zips
4852
printf '## Terraform Oracle Cloud Infrastructure Provider Examples \n### Examples In This Directory \nThis directory contains Terraform configuration files showing how to create specific resources. The examples are intended to be as simple as possible, in most cases containing only the specific resource and any dependencies required for it to run. These do not represent production configurations or real world scenarios. The magic buttons of the examples can be found below.\n' > ./examples/${RESOURCE}/README.md
4953
FOLDERS=$(ls -d examples/*/ | jq -R)
50-
MAGIC_LINK="https://cloud.oracle.com/resourcemanager/stacks/create?zipUrl=https://github.com/${{ github.repository_owner }}/${{ github.event.repository.name }}/releases/latest/download/"
54+
MAGIC_LINK="https://cloud.oracle.com/resourcemanager/stacks/create?zipUrl=https://github.com/${{ github.repository_owner }}/${{ github.event.repository.name }}/raw/master/examples/zips/"
5155
for EXAMPLE_FOLDER in $FOLDERS;
5256
do
5357
RESOURCE=$(cut -d "/" -f 2 <<< "$EXAMPLE_FOLDER")
5458
if [[ "$RESOURCE" != "zips" ]]; then
5559
FILENAME=description.md
56-
FILEZIP=example_${RESOURCE}.zip
60+
FILEZIP=${RESOURCE}.zip
61+
FOLDER=$(echo "$EXAMPLE_FOLDER" | tr -d '"')
62+
zip -r $FILEZIP $FOLDER || { printf '\n Unable to create zips.\n'; exit 1; }
63+
mv $FILEZIP ./examples/zips
5764
cat ./examples/${RESOURCE}/$FILENAME > ./examples/${RESOURCE}/README.md
5865
printf '\n## Magic Button \n[![Deploy to Oracle Cloud](https://oci-resourcemanager-plugin.plugins.oci.oraclecloud.com/latest/deploy-to-oracle-cloud.svg)]('${MAGIC_LINK}${FILEZIP}')' >>./examples/${RESOURCE}/README.md
5966
printf '%s\n' '- '${RESOURCE}'

.gitignore

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,4 @@ vendor/github.com/oracle/oci-go-sdk/target
2727
.gitmodules
2828
internal/record
2929
.terraform.lock.hcl
30-
dist/
31-
examples/zips/*
30+
dist/

.goreleaser.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@ release:
5959
extra_files:
6060
- glob: 'terraform-registry-manifest.json'
6161
name_template: '{{ .ProjectName }}_{{ .Version }}_manifest.json'
62-
- glob: ./examples/zips/*
6362
# If you want to manually examine the release before its live, uncomment this line:
6463
# draft: true
6564
changelog:

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## 4.86.0 (July 26, 2022)
2+
3+
### Added
4+
- Support for Standby lifecyclestate to created target for ADBS resource
5+
- Support for new fields port, protocol, role, and ssl secret id to enable/modify database management service
6+
- Support for Data Science - Model Deploy Omnivorous Compute/Flex shape support
7+
- management_agents compartment_id_in_subtree and agent in pluginlist
8+
### Bug Fix
9+
- fix for test error logging output
10+
111
## 4.85.0 (July 20, 2022)
212

313
### Added

examples/README.md

Lines changed: 94 additions & 94 deletions
Large diffs are not rendered by default.

examples/adm/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ This is a Terraform configuration that creates the ADM service on Oracle Cloud I
33

44
The Terraform code is used to create a Resource Manager stack, that creates the required resources and configures the application on the created resources.
55
## 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/releases/latest/download/example_adm.zip)
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/adm.zip)

examples/aiAnomalyDetection/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ This is a Terraform configuration that creates the AI Anomaly Detection service
33

44
The Terraform code is used to create a Resource Manager stack, that creates the required resources and configures the application on the created resources.
55
## 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/releases/latest/download/example_aiAnomalyDetection.zip)
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/aiAnomalyDetection.zip)

examples/aiVision/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ This is a Terraform configuration that creates the AI Vision service on Oracle C
33

44
The Terraform code is used to create a Resource Manager stack, that creates the required resources and configures the application on the created resources.
55
## 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/releases/latest/download/example_aiVision.zip)
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/aiVision.zip)

examples/always_free/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ This is a Terraform configuration that creates the Always Free service on Oracle
33

44
The Terraform code is used to create a Resource Manager stack, that creates the required resources and configures the application on the created resources.
55
## 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/releases/latest/download/example_always_free.zip)
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/always_free.zip)

examples/analytics/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ This is a Terraform configuration that creates the Analytics service on Oracle C
33

44
The Terraform code is used to create a Resource Manager stack, that creates the required resources and configures the application on the created resources.
55
## 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/releases/latest/download/example_analytics.zip)
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/analytics.zip)

0 commit comments

Comments
 (0)