mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-25 18:45:20 -06:00
16 lines
339 B
Terraform
16 lines
339 B
Terraform
|
output "default_security_group" {
|
||
|
value = "${alicloud_security_group.default.id}"
|
||
|
}
|
||
|
|
||
|
output "edge_security_group" {
|
||
|
value = "${alicloud_security_group.edge.id}"
|
||
|
}
|
||
|
|
||
|
output "control_security_group" {
|
||
|
value = "${alicloud_security_group.control.id}"
|
||
|
}
|
||
|
|
||
|
output "worker_security_group" {
|
||
|
value = "${alicloud_security_group.worker.id}"
|
||
|
}
|