first commit
This commit is contained in:
21
modules/01-networking/docker-network/outputs.tf
Normal file
21
modules/01-networking/docker-network/outputs.tf
Normal file
@@ -0,0 +1,21 @@
|
||||
// Outputs for Docker Network module
|
||||
|
||||
output "network_id" {
|
||||
description = "The ID of the Docker network"
|
||||
value = docker_network.this.id
|
||||
}
|
||||
|
||||
output "name" {
|
||||
description = "The name of the Docker network"
|
||||
value = docker_network.this.name
|
||||
}
|
||||
|
||||
output "network_driver" {
|
||||
description = "The driver of the Docker network"
|
||||
value = docker_network.this.driver
|
||||
}
|
||||
|
||||
output "ipam_config" {
|
||||
description = "The IPAM configuration of the Docker network"
|
||||
value = docker_network.this.ipam_config
|
||||
}
|
||||
Reference in New Issue
Block a user