File tree Expand file tree Collapse file tree 3 files changed +8
-5
lines changed
Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 1+ provider "aws" {
2+ region = " us-east-1"
3+ }
14module "databricks_workspace" {
25 source = " ../../"
36
Original file line number Diff line number Diff line change @@ -8,9 +8,9 @@ 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_ids " {
12- description = " list of VPC security group IDs"
13- value = [ module . databricks_workspace . security_group_ids ]
11+ output "security_group_id " {
12+ description = " VPC security group IDs"
13+ value = module. databricks_workspace . security_group_id
1414}
1515output "subnet_ids" {
1616 description = " list of subnet ids within VPC"
Original file line number Diff line number Diff line change @@ -14,8 +14,8 @@ output "public_route_table_ids" {
1414}
1515
1616output "security_group_ids" {
17- description = " list of VPC security group IDs"
18- value = module. vpc . default_security_group_id
17+ description = " VPC security group IDs"
18+ value = module. vpc . security_group_id
1919}
2020
2121output "private_subnet_ids" {
You can’t perform that action at this time.
0 commit comments