Skip to content

Commit 4bb7ae4

Browse files
Michael Hartmichaelhart
authored andcommitted
Doc fix: core_volume_attachment_resource type should be attachment_type
RESOLVES #482
1 parent b5e1872 commit 4bb7ae4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/core/volume_attachments.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ The following arguments are supported:
3131

3232
* `display_name` - (Optional) A user-friendly name. Does not have to be unique, and it cannot be changed. Avoid entering confidential information.
3333
* `instance_id` - (Required) The OCID of the instance.
34-
* `type` - (Required) The type of volume. The only supported value is "iscsi".
34+
* `attachment_type` - (Required) The type of volume. The only supported value is "iscsi".
3535
* `volume_id` - (Required) The OCID of the volume.
3636

3737

@@ -50,7 +50,7 @@ Any change to a property that does not support update will force the destruction
5050
resource "oci_core_volume_attachment" "test_volume_attachment" {
5151
#Required
5252
instance_id = "${oci_core_instance.test_instance.id}"
53-
type = "iscsi"
53+
attachment_type = "iscsi"
5454
volume_id = "${oci_core_volume.test_volume.id}"
5555
5656
#Optional

0 commit comments

Comments
 (0)