@pulumi/oci 0.1.0 → 0.1.2-alpha.1657649414

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 CHANGED
@@ -1,6 +1,6 @@
1
- # Oracle Cloud (OCI) Resource Provider
1
+ # Oracle Cloud Infrastructure Resource Provider
2
2
 
3
- The Oracle Cloud (OCI) Resource Provider lets you manage [Oracle Cloud](https://www.oracle.com/index.html) resources.
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 from JavaScript or TypeScript in Node.js, install using either `npm`:
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 from Python, install using `pip`:
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 from Go, use `go get` to grab the latest version of the library:
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 from .NET, install using `dotnet add package`:
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 points are available for the `oci` provider:
49
+ The following configuration options are available for the `oci` provider:
50
50
 
51
- - `oci:tenancyOcid` (environment: `TF_VAR_tenancy_ocid`) - OCID of your tenancy. To get the value, see [Where to Get the Tenancy's OCID and User's OCID](https://docs.oracle.com/en-us/iaas/Content/API/Concepts/apisigningkey.htm#five.
52
- - `oci:userOcid` (environment: `TF_VAR_user_ocid`) - OCID of the user calling the API. To get the value, see [Where to Get the Tenancy's OCID and User's OCID](https://docs.oracle.com/en-us/iaas/Content/API/Concepts/apisigningkey.htm#five).
53
- - `oci:privateKey` (environment: `TF_VAR_private_key`) - The contents of the private key file. Required if `privateKeyPath` is not defined, and takes precedence over `privateKeyPath` if both are defined. For details on how to create and configure keys see [How to Generate an API Signing Key](https://docs.oracle.com/en-us/iaas/Content/API/Concepts/apisigningkey.htm#two)) and [How to Upload the Public Key](https://docs.oracle.com/en-us/iaas/Content/API/Concepts/apisigningkey.htm#three).
54
- - `oci:privateKeyPath` (environment: `TF_VAR_private_key_path`) - The path (including filename) of the private key stored on your computer. Required if `privateKey` is not defined. For details on how to create and configure keys see [How to Generate an API Signing Key](https://docs.oracle.com/en-us/iaas/Content/API/Concepts/apisigningkey.htm#two)) and [How to Upload the Public Key](https://docs.oracle.com/en-us/iaas/Content/API/Concepts/apisigningkey.htm#three).
55
- - `oci:privateKeyPassword` (environment: `TF_VAR_private_key_password`) - Passphrase used for the key, if it is encrypted.
56
- - `oci:fingerprint` (environment: `TF_VAR_fingerprint`) - Fingerprint for the key pair being used. To get the value, see [How to Get the Key's Fingerprint](https://docs.oracle.com/en-us/iaas/Content/API/Concepts/apisigningkey.htm#four).
57
- - `oci:region` (environment: `TF_VAR_region`) - An OCI region. See [Regions and Availability Domains](https://docs.oracle.com/en-us/iaas/Content/General/Concepts/regions.htm#top).
58
- - `oci:configFileProfile` (environment: `TF_VAR_config_file_profile`) - The profile name if you would like to use a custom profile in the OCI config file to provide the authentication credentials. See [Using the SDK and CLI Configuration File](https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/terraformproviderconfiguration.htm#terraformproviderconfiguration_topic-SDK_and_CLI_Config_File) for more information.
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.0",
4
- "description": "A Pulumi package for creating and managing oci cloud resources.",
3
+ "version": "v0.1.2-alpha.1657649414+f4e3cf4c",
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.0"
16
+ "install": "node scripts/install-pulumi-plugin.js resource oci v0.1.2-alpha.1657649414+f4e3cf4c"
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 oci cloud resources.",
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.0",
4
- "description": "A Pulumi package for creating and managing oci cloud resources.",
3
+ "version": "v0.1.2-alpha.1657649414+f4e3cf4c",
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.0"
16
+ "install": "node scripts/install-pulumi-plugin.js resource oci v0.1.2-alpha.1657649414+f4e3cf4c"
16
17
  },
17
18
  "dependencies": {
18
19
  "@pulumi/pulumi": "^3.0.0"