Updating the example for image list entries
This commit is contained in:
parent
965d6ce92e
commit
7e9fbc6b88
|
@ -13,9 +13,15 @@ The ``opc_compute_image_list_entry`` resource creates and manages an Image List
|
||||||
## Example Usage
|
## Example Usage
|
||||||
|
|
||||||
```
|
```
|
||||||
|
resource "opc_compute_image_list" "test" {
|
||||||
|
name = "imagelist1"
|
||||||
|
description = "This is a description of the Image List"
|
||||||
|
default = 21
|
||||||
|
}
|
||||||
|
|
||||||
resource "opc_compute_image_list_entry" "test" {
|
resource "opc_compute_image_list_entry" "test" {
|
||||||
name = "imagelist1"
|
name = "${opc_compute_image_list.test.name}"
|
||||||
machine_images = ["image1", "image2"]
|
machine_images = [ "/oracle/public/oel_6.7_apaas_16.4.5_1610211300" ]
|
||||||
version = 1
|
version = 1
|
||||||
attributes = <<JSON
|
attributes = <<JSON
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue