@pulumi/oci 0.1.0 → 0.1.1-alpha.1651613153
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +23 -16
- package/package.json +4 -3
- package/package.json.bak +2 -1
- package/package.json.dev +4 -3
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
# Oracle Cloud
|
|
1
|
+
# Oracle Cloud Infrastructure Resource Provider
|
|
2
2
|
|
|
3
|
-
The Oracle Cloud (OCI) Resource Provider lets you manage [
|
|
3
|
+
The Oracle Cloud Infrastructure (OCI) Resource Provider lets you manage [OCI](https://www.oracle.com/cloud/) resources.
|
|
4
4
|
|
|
5
5
|
## Installing
|
|
6
6
|
|
|
@@ -8,7 +8,7 @@ This package is available for several languages/platforms:
|
|
|
8
8
|
|
|
9
9
|
### Node.js (JavaScript/TypeScript)
|
|
10
10
|
|
|
11
|
-
To use
|
|
11
|
+
To use with JavaScript or TypeScript in Node.js, install using either `npm`:
|
|
12
12
|
|
|
13
13
|
```bash
|
|
14
14
|
npm install @pulumi/oci
|
|
@@ -22,15 +22,15 @@ yarn add @pulumi/oci
|
|
|
22
22
|
|
|
23
23
|
### Python
|
|
24
24
|
|
|
25
|
-
To use
|
|
25
|
+
To use with Python, install using `pip`:
|
|
26
26
|
|
|
27
27
|
```bash
|
|
28
|
-
pip install pulumi_oci
|
|
28
|
+
python3 -m pip install pulumi_oci
|
|
29
29
|
```
|
|
30
30
|
|
|
31
31
|
### Go
|
|
32
32
|
|
|
33
|
-
To use
|
|
33
|
+
To use with Go, use `go get` to grab the latest version of the library:
|
|
34
34
|
|
|
35
35
|
```bash
|
|
36
36
|
go get github.com/pulumi/pulumi-oci/sdk/...
|
|
@@ -38,7 +38,7 @@ go get github.com/pulumi/pulumi-oci/sdk/...
|
|
|
38
38
|
|
|
39
39
|
### .NET
|
|
40
40
|
|
|
41
|
-
To use
|
|
41
|
+
To use with .NET, install using `dotnet add package`:
|
|
42
42
|
|
|
43
43
|
```bash
|
|
44
44
|
dotnet add package Pulumi.Oci
|
|
@@ -46,17 +46,24 @@ dotnet add package Pulumi.Oci
|
|
|
46
46
|
|
|
47
47
|
## Configuration
|
|
48
48
|
|
|
49
|
-
The following configuration
|
|
49
|
+
The following configuration options are available for the `oci` provider:
|
|
50
50
|
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
51
|
+
| Option | Environment variable | Description |
|
|
52
|
+
| ------------------------ | ----------------------------- | --------------------------------------------------------------------------------------------------------------------------- |
|
|
53
|
+
| `oci:tenancyOcid` | `TF_VAR_tenancy_ocid` | OCID of your tenancy. |
|
|
54
|
+
| `oci:userOcid` | `TF_VAR_user_ocid` | OCID of the user calling the API. |
|
|
55
|
+
| `oci:privateKey` | `TF_VAR_private_key` | The contents of the private key file. Required if `privateKeyPath` is not defined and takes precedence if both are defined. |
|
|
56
|
+
| `oci:privateKeyPath` | `TF_VAR_private_key_path` | The path (including filename) of the private key stored on your computer. Required if `privateKey` is not defined. |
|
|
57
|
+
| `oci:privateKeyPassword` | `TF_VAR_private_key_password` | Passphrase used for the key, if it is encrypted. |
|
|
58
|
+
| `oci:fingerprint` | `TF_VAR_fingerprint` | Fingerprint for the key pair being used. |
|
|
59
|
+
| `oci:region` | `TF_VAR_region` | An OCI region. |
|
|
60
|
+
| `oci:configFileProfile` | `TF_VAR_config_file_profile` | The custom profile to use instead of the `DEFAULT` profile in `.oci/config`. |
|
|
59
61
|
|
|
62
|
+
Use the [Required Keys and OCIDs](https://docs.oracle.com/en-us/iaas/Content/API/Concepts/apisigningkey.htm#Required_Keys_and_OCIDs) chapter of the OCI Developer Guide to learn:
|
|
63
|
+
|
|
64
|
+
- [How to Generate an API Signing Key](https://docs.oracle.com/en-us/iaas/Content/API/Concepts/apisigningkey.htm#two)
|
|
65
|
+
- [How to Get the Key's Fingerprint](https://docs.oracle.com/en-us/iaas/Content/API/Concepts/apisigningkey.htm#four)
|
|
66
|
+
- [Where to Get the Tenancy's OCID and User's OCID](https://docs.oracle.com/en-us/iaas/Content/API/Concepts/apisigningkey.htm#five)
|
|
60
67
|
|
|
61
68
|
## Reference
|
|
62
69
|
|
package/package.json
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/oci",
|
|
3
|
-
"version": "v0.1.
|
|
4
|
-
"description": "A Pulumi package for creating and managing
|
|
3
|
+
"version": "v0.1.1-alpha.1651613153+1d4d8805",
|
|
4
|
+
"description": "A Pulumi package for creating and managing Oracle Cloud Infrastructure resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
7
7
|
"oci",
|
|
8
|
+
"oracle",
|
|
8
9
|
"category/cloud"
|
|
9
10
|
],
|
|
10
11
|
"homepage": "https://www.pulumi.com",
|
|
@@ -12,7 +13,7 @@
|
|
|
12
13
|
"license": "Apache-2.0",
|
|
13
14
|
"scripts": {
|
|
14
15
|
"build": "tsc",
|
|
15
|
-
"install": "node scripts/install-pulumi-plugin.js resource oci v0.1.
|
|
16
|
+
"install": "node scripts/install-pulumi-plugin.js resource oci v0.1.1-alpha.1651613153+1d4d8805"
|
|
16
17
|
},
|
|
17
18
|
"dependencies": {
|
|
18
19
|
"@pulumi/pulumi": "^3.0.0"
|
package/package.json.bak
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/oci",
|
|
3
3
|
"version": "${VERSION}",
|
|
4
|
-
"description": "A Pulumi package for creating and managing
|
|
4
|
+
"description": "A Pulumi package for creating and managing Oracle Cloud Infrastructure resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
7
7
|
"oci",
|
|
8
|
+
"oracle",
|
|
8
9
|
"category/cloud"
|
|
9
10
|
],
|
|
10
11
|
"homepage": "https://www.pulumi.com",
|
package/package.json.dev
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/oci",
|
|
3
|
-
"version": "v0.1.
|
|
4
|
-
"description": "A Pulumi package for creating and managing
|
|
3
|
+
"version": "v0.1.1-alpha.1651613153+1d4d8805",
|
|
4
|
+
"description": "A Pulumi package for creating and managing Oracle Cloud Infrastructure resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
7
7
|
"oci",
|
|
8
|
+
"oracle",
|
|
8
9
|
"category/cloud"
|
|
9
10
|
],
|
|
10
11
|
"homepage": "https://www.pulumi.com",
|
|
@@ -12,7 +13,7 @@
|
|
|
12
13
|
"license": "Apache-2.0",
|
|
13
14
|
"scripts": {
|
|
14
15
|
"build": "tsc",
|
|
15
|
-
"install": "node scripts/install-pulumi-plugin.js resource oci v0.1.
|
|
16
|
+
"install": "node scripts/install-pulumi-plugin.js resource oci v0.1.1-alpha.1651613153+1d4d8805"
|
|
16
17
|
},
|
|
17
18
|
"dependencies": {
|
|
18
19
|
"@pulumi/pulumi": "^3.0.0"
|