Skip to content

Commit b06deea

Browse files
temporarily comment datasource example
Signed-off-by: Rohit Kulkarni <[email protected]>
1 parent 60e3dbe commit b06deea

File tree

1 file changed

+14
-13
lines changed

1 file changed

+14
-13
lines changed

examples/datasource/imis/main.tf

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,17 @@ provider "intelcloud" {
1616
}
1717
}
1818

19-
data "intelcloud_imis" "filtered_imis" {
20-
clusteruuid = "<your-cluster-uuid>"
21-
filters = [
22-
{
23-
name = "instance-type"
24-
values = ["vm-spr-sml"]
25-
},
26-
]
27-
}
28-
29-
output "print_images" {
30-
value = data.intelcloud_imis.filtered_imis
31-
}
19+
// Commenting this temporarily as it is won't work without merging the PR for imis datasource
20+
#data "intelcloud_imis" "filtered_imis" {
21+
# clusteruuid = "<your-cluster-uuid>"
22+
# filters = [
23+
# {
24+
# name = "instance-type"
25+
# values = ["vm-spr-sml"]
26+
# },
27+
# ]
28+
#}
29+
#
30+
#output "print_images" {
31+
# value = data.intelcloud_imis.filtered_imis
32+
#}

0 commit comments

Comments
 (0)