Skip to content

Commit 5856036

Browse files
authored
Merge pull request #625 from terraform-providers/release
Release v3.4.0
2 parents 0dcc336 + c1b672b commit 5856036

File tree

331 files changed

+8156
-11874
lines changed

Some content is hidden

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

331 files changed

+8156
-11874
lines changed

CHANGELOG.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,18 @@
1-
## 3.3.1 (Unreleased)
1+
## 3.4.0 (Unreleased)
2+
3+
### Added
4+
- Support for clone and resize of Boot Volume
5+
- Support for specifying a backup policy at the time of creating a Boot Volume
6+
- Support for offline resizing of Boot Volume
7+
- Support for tagging of Boot Volume
8+
- Support for NAT Gateways
9+
- Support for singular data sources that can query individual Volumes, Subnets, and Instances
10+
- Fields "assigned_entity_id" and "assigned_entity_type" to Public IPs to allow distinguishing Public IPs of the NAT Gateway.
11+
12+
### Fixed
13+
- Importing of volumes with backup policies. Issue [#590](https://github.com/terraform-providers/terraform-provider-oci/issues/590)
14+
- Updating of Virtual Circuits fails with field bgpMd5AuthKey is not supported
15+
216
## 3.3.0 (October 04, 2018)
317

418
### Added

GNUmakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ GOFMT_FILES?=$$(find . -name '*.go' |grep -v vendor)
33
PKG_NAME=oci
44
WEBSITE_REPO=github.com/hashicorp/terraform-website
55

6-
prefix := $(if $(debug),TF_LOG=DEBUG DEBUG=true OCI_GO_SDK_DEBUG=1, )
6+
prefix := $(if $(debug),TF_LOG=DEBUG OCI_GO_SDK_DEBUG=1, )
77
timeout := $(if $(timeout), $(timeout), 120m)
88
run_regex := $(if $(run), -run $(run), )
99
skip_goimports_check_flag := $(if $(skip_goimports_check), -s, )

README.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,20 @@ $ make build
4040
```
4141

4242

43-
Using the provider
43+
Using the Provider
4444
----------------------
45-
If you're building the provider, follow the instructions to [install it as a plugin.](https://www.terraform.io/docs/plugins/basics.html#installing-a-plugin) After placing it into your plugins directory, run `terraform init` to initialize it.
45+
If you're building the provider, follow the instructions to [install it as a plugin.](https://www.terraform.io/docs/plugins/basics.html#installing-a-plugin)
46+
After placing it into your plugins directory, run `terraform init` to initialize it and begin using Terraform with the Oracle Cloud Infrastructure provider.
47+
48+
49+
Troubleshooting the Provider
50+
----------------------
51+
To get verbose console output when the provider is running, precede your Terraform command with the `TF_LOG` and `OCI_GO_SDK_DEBUG` flags:
52+
```sh
53+
TF_LOG=DEBUG OCI_GO_SDK_DEBUG=1 terraform plan
54+
```
55+
56+
The [tf_log](https://www.terraform.io/docs/internals/debugging.html) level and `OCI_GO_SDK_DEBUG` flags can also be set as environment variables.
4657

4758

4859
Developing the Provider

docs/Readme.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
## NOTICE
2+
### Documentation Moved
3+
OCI Provider documents have moved. They are available through Terraform.io here: https://www.terraform.io/docs/providers/oci/
4+
5+
> **Note:** The docs still exist locally in the `website/docs/` subfolders.
6+
7+
8+
### Solutions Moved
9+
Solutions and related Github issues have been migrated to a new repository: https://github.com/oracle/terraform-examples/tree/master/examples/oci
10+
11+
Please refer to the above github project for any contributions or feedback about the solutions.
12+
13+
14+
### Examples Are Moving
15+
Examples will be moved up one level to the project root when the `docs` folder is removed.

docs/Table of Contents.md

Lines changed: 0 additions & 120 deletions
This file was deleted.

docs/audit/audit_events.md

Lines changed: 0 additions & 55 deletions
This file was deleted.

docs/audit/configurations.md

Lines changed: 0 additions & 60 deletions
This file was deleted.

docs/containerengine/cluster_kube_configs.md

Lines changed: 0 additions & 34 deletions
This file was deleted.

docs/containerengine/cluster_options.md

Lines changed: 0 additions & 28 deletions
This file was deleted.

0 commit comments

Comments
 (0)