No description
  • Go 96.9%
  • HTML 1.2%
  • Shell 1.2%
  • Makefile 0.7%
Find a file
OpenTofu Core Development Team 3250598ba6 Apply GitHub workflow changes
2025-11-18 15:34:52 +02:00
.github/workflows Apply GitHub workflow changes 2025-11-18 15:34:52 +02:00
oraclepaas Fix mysql subnet 2019-09-05 11:37:02 -07:00
scripts Add subcategories to docs for Terraform Registry 2019-11-08 11:22:44 -05:00
vendor Fix mysql subnet 2019-09-05 11:37:02 -07:00
website Add subcategories to docs for Terraform Registry 2019-11-08 11:22:44 -05:00
.DS_Store Updating vendor and adding ability to update shape 2018-05-24 13:22:07 -06:00
.go-version provider: Ensured Go 1.11 in TravisCI and README 2019-03-01 16:12:11 -05:00
.travis.yml Add subcategories to docs for Terraform Registry 2019-11-08 11:22:44 -05:00
CHANGELOG.md Cleanup after v1.5.3 release 2019-09-05 19:01:49 +00:00
GNUmakefile Add subcategories to docs for Terraform Registry 2019-11-08 11:22:44 -05:00
go.mod vendor: Bump terraform to 0.12.8 2019-09-17 09:45:42 +02:00
go.sum vendor: Bump terraform to 0.12.8 2019-09-17 09:45:42 +02:00
LICENSE Create LICENSE 2018-05-30 09:34:50 -06:00
main.go Final changes for oraclepaas 2018-03-22 20:50:37 -06:00
README.md Archive oraclepaas (#76) 2022-03-25 12:29:34 -04:00

📝 This provider is no longer maintained by HashiCorp.

Terraform Provider

Requirements

  • Terraform 0.10.x
  • Go 1.11 (to build the provider plugin)

Building The Provider

Clone repository to: $GOPATH/src/github.com/terraform-providers/terraform-provider-oraclepaas

$ mkdir -p $GOPATH/src/github.com/terraform-providers; cd $GOPATH/src/github.com/terraform-providers
$ git clone https://github.com/hashicorp/terraform-provider-oraclepaas.git

Enter the provider directory and build the provider

$ cd $GOPATH/src/github.com/terraform-providers/terraform-provider-oraclepaas
$ make build

Using the provider

Fill in for each provider

Developing the Provider

If you wish to work on the provider, you'll first need Go installed on your machine (version 1.11 is required). You'll also need to correctly setup a GOPATH, as well as adding $GOPATH/bin to your $PATH.

To compile the provider, run make build. This will build the provider and put the provider binary in the $GOPATH/bin directory.

$ make build
...
$ $GOPATH/bin/terraform-provider-oraclepaas
...

In order to test the provider, you can simply run make test.

$ make test

In order to run the full suite of Acceptance tests, run make testacc.

Note: Acceptance tests create real resources, and often cost money to run.

$ make testacc