Skip to content

Commit 449943e

Browse files
committed
minor doc updates
1 parent 876b948 commit 449943e

File tree

5 files changed

+10
-7
lines changed

5 files changed

+10
-7
lines changed

docs/core/images.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ The following attributes are exported:
2323
* `SCSI` - Emulated SCSI disk.
2424
* `IDE` - Emulated IDE disk.
2525
* `VFIO` - Direct attached Virtual Function storage. This is the default option for Local data volumes on Oracle provided images.
26+
* `PARAVIRTUALIZED` - Paravirtualized disk.
2627
* `firmware` - Firmware used to boot VM. Select the option that matches your operating system.
2728
* `BIOS` - Boot VM using BIOS style firmware. This is compatible with both 32 bit and 64 bit operating systems that boot using MBR style bootloaders.
2829
* `UEFI_64` - Boot VM using UEFI style firmware compatible with 64 bit operating systems. This is the default for Oracle provided images.
@@ -32,6 +33,7 @@ The following attributes are exported:
3233
* `remote_data_volume_type` - Emulation type for volume.
3334
* `ISCSI` - ISCSI attached block storage device. This is the default for Boot Volumes and Remote Block Storage volumes on Oracle provided images.
3435
* `SCSI` - Emulated SCSI disk. * `IDE` - Emulated IDE disk. * `VFIO` - Direct attached Virtual Function storage. This is the default option for Local data volumes on Oracle provided images.
36+
* `PARAVIRTUALIZED` - Paravirtualized disk.
3537
* `operating_system` - The image's operating system. Example: `Oracle Linux`
3638
* `operating_system_version` - The image's operating system version. Example: `7.2`
3739
* `size_in_mbs` - Image size (1 MB = 1048576 bytes) Example: `47694`
@@ -56,11 +58,11 @@ The following arguments are supported:
5658

5759
* `compartment_id` - (Required) The OCID of the compartment containing the instance you want to use as the basis for the image.
5860
* `defined_tags` - (Optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.us-phoenix-1.oraclecloud.com/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
59-
* `display_name` - (Optional) A user-friendly name for the image. It does not have to be unique, and it's changeable. Avoid entering confidential information. You cannot use an Oracle-provided image name as a custom image name. Example: `My Oracle Linux image`
61+
* `display_name` - (Optional) A user-friendly name for the image. It does not have to be unique, and it's changeable. Avoid entering confidential information. You cannot use an Oracle-provided image name as a custom image name. Example: `My Oracle Linux image`
6062
* `freeform_tags` - (Optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.us-phoenix-1.oraclecloud.com/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
6163
* `image_source_details` - (Optional) Details for creating an image through import
62-
* `source_type` - (Required) The source type for the image. Use objectStorageTuple when specifying the namespace, bucket name, and object name. Use objectStorageUri when specifying the Object Storage URL. Allowed values are: - `objectStorageTuple` - `objectStorageUri`
6364
* `source_image_type` - (Optional) The format of the image to be imported. Exported Oracle images are QCOW2. Only monolithic images are supported. Allowed values are: - `QCOW2` - `VMDK`
65+
* `source_type` - (Required) The source type for the image. Use objectStorageTuple when specifying the namespace, bucket name, and object name. Use `objectStorageUri` when specifying the Object Storage URL. Allowed values are: - `objectStorageTuple` - `objectStorageUri`
6466
* `source_uri` - (Required for objectStorageUri source_type) The Object Storage URL for the image.
6567
* `bucket_name` - (Required for objectStorageTuple source_type) The Object Storage bucket for the image.
6668
* `namespace_name` - (Required for objectStorageTuple source_type) The Object Storage namespace for the image.

docs/core/instance_credentials.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ The following attributes are exported:
1212

1313

1414
### Get Operation
15-
Gets the generated credentials for the instance. Only works for Windows instances. The returned credentials
16-
are only valid for the initial login.
15+
Gets the generated credentials for the instance. Only works for instances that require password to log in (E.g. Windows).
16+
For certain OS'es, users will be forced to change the initial credentials.
1717

1818

1919
The following arguments are supported:

docs/core/internet_gateways.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ The following attributes are exported:
2020

2121
### Create Operation
2222
Creates a new Internet Gateway for the specified VCN. For more information, see
23-
[Connectivity to the Internet](https://docs.us-phoenix-1.oraclecloud.com/Content/Network/Tasks/managingIGs.htm).
23+
[Access to the Internet](https://docs.us-phoenix-1.oraclecloud.com/Content/Network/Tasks/managingIGs.htm).
2424

2525
For the purposes of access control, you must provide the OCID of the compartment where you want the Internet
2626
Gateway to reside. Notice that the Internet Gateway doesn't have to be in the same compartment as the VCN or

docs/core/volumes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ The following attributes are exported:
2626

2727
### Create Operation
2828
Creates a new volume in the specified compartment. Volumes can be created in sizes ranging from
29-
50 GB (51200 MB) to 16 TB (16777216 MB), in 1 GB (1024 MB) increments. By default, volumes are 1 TB (1048576 MB).
29+
50 GB (51200 MB) to 32 TB (33554432 MB), in 1 GB (1024 MB) increments. By default, volumes are 1 TB (1048576 MB).
3030
For general information about block volumes, see
3131
[Overview of Block Volume Service](https://docs.us-phoenix-1.oraclecloud.com/Content/Block/Concepts/overview.htm).
3232

provider/email_suppressions_data_source.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,9 @@ import (
99
oci_common "github.com/oracle/oci-go-sdk/common"
1010
oci_email "github.com/oracle/oci-go-sdk/email"
1111

12-
"github.com/oracle/terraform-provider-oci/crud"
1312
"time"
13+
14+
"github.com/oracle/terraform-provider-oci/crud"
1415
)
1516

1617
func SuppressionsDataSource() *schema.Resource {

0 commit comments

Comments
 (0)