|
16 | 16 |
|
17 | 17 | output "instances_self_links" { |
18 | 18 | description = "List of self-links for compute instances" |
19 | | - value = module.shared_gce_instance.instances_self_links |
| 19 | + value = module.gce_instance.instances_self_links |
20 | 20 | } |
21 | 21 |
|
22 | 22 | output "instances_names" { |
23 | 23 | description = "List of names for compute instances" |
24 | | - value = [for u in module.shared_gce_instance.instances_details : u.name] |
| 24 | + value = [for u in module.gce_instance.instances_details : u.name] |
25 | 25 | sensitive = true |
26 | 26 | } |
27 | 27 |
|
28 | 28 | output "instances_zones" { |
29 | 29 | description = "List of zone for compute instances" |
30 | | - value = [for u in module.shared_gce_instance.instances_details : u.zone] |
| 30 | + value = [for u in module.gce_instance.instances_details : u.zone] |
31 | 31 | sensitive = true |
32 | 32 | } |
33 | 33 |
|
34 | 34 | output "instances_details" { |
35 | 35 | description = "List of details for compute instances" |
36 | | - value = module.shared_gce_instance.instances_details |
| 36 | + value = module.gce_instance.instances_details |
37 | 37 | sensitive = true |
38 | 38 | } |
39 | 39 |
|
40 | 40 | output "available_zones" { |
41 | 41 | description = "List of available zones in region" |
42 | | - value = module.shared_gce_instance.available_zones |
| 42 | + value = module.gce_instance.available_zones |
43 | 43 | } |
44 | 44 |
|
45 | 45 | output "project_id" { |
46 | 46 | description = "Project where compute instance was created" |
47 | | - value = module.shared_gce_instance.project_id |
| 47 | + value = module.gce_instance.project_id |
48 | 48 | } |
49 | 49 |
|
50 | 50 | output "region" { |
51 | 51 | description = "Region where compute instance was created" |
52 | | - value = module.shared_gce_instance.region |
| 52 | + value = module.gce_instance.region |
53 | 53 | } |
0 commit comments