-
Notifications
You must be signed in to change notification settings - Fork 15
/
outputs.tf
34 lines (28 loc) · 901 Bytes
/
outputs.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
output "managed_disk_id" {
description = "The id of the newly created managed disk"
value = "${azurerm_managed_disk.disk.id}"
}
output "import_vhd" {
description = "Says that a source_uri was provided."
value = "${local.import_vhd}"
}
output "copy_disk" {
description = "Says that a source_resource_id was provided."
value = "${local.copy_disk}"
}
output "copy_image" {
description = "Says that a image_resource_id was provided."
value = "${local.copy_image}"
}
output "create_empty" {
description = "Says that a new empty disk will be created."
value = "${local.create_empty}"
}
output "create_option" {
description = "Tells the create option for the managed disk resource."
value = "${local.create_option}"
}
output "disk_size_gb" {
description = "Tells the disk_size_gb provided by input."
value = "${var.disk_size_gb}"
}