File tree Expand file tree Collapse file tree 2 files changed +9
-9
lines changed Expand file tree Collapse file tree 2 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -8,13 +8,13 @@ output "route_table_ids" {
88 value = concat ( module. databricks_workspace . private_route_table_ids , module. databricks_workspace . public_route_table_ids )
99}
1010
11- output "security_group_id " {
11+ output "default_security_group_id " {
1212 description = " VPC security group IDs"
13- value = module. databricks_workspace . security_group_id
13+ value = module. databricks_workspace . default_security_group_id
1414}
1515output "subnet_ids" {
1616 description = " list of subnet ids within VPC"
17- value = concat ( module. databricks_workspace . private_subnet_ids , module. databricks_workspace . public_subnet_ids )
17+ value = concat ( module. databricks_workspace . private_subnets , module. databricks_workspace . public_subnets )
1818}
1919
2020output "iam_role_arn" {
Original file line number Diff line number Diff line change @@ -13,19 +13,19 @@ output "public_route_table_ids" {
1313 value = module. vpc . public_route_table_ids
1414}
1515
16- output "security_group_id " {
16+ output "default_security_group_id " {
1717 description = " VPC security group ID"
18- value = module. vpc . security_group_id
18+ value = module. vpc . default_security_group_id
1919}
2020
21- output "private_subnet_ids " {
21+ output "private_subnets " {
2222 description = " list of private subnet ids within VPC"
23- value = module. vpc . private_subnet_ids
23+ value = module. vpc . private_subnets
2424}
2525
26- output "public_subnet_ids " {
26+ output "public_subnets " {
2727 description = " list of public subnet ids within VPC"
28- value = module. vpc . public_subnet_ids
28+ value = module. vpc . public_subnets
2929}
3030
3131output "iam_role_arn" {
You can’t perform that action at this time.
0 commit comments