File tree Expand file tree Collapse file tree 5 files changed +10
-15
lines changed Expand file tree Collapse file tree 5 files changed +10
-15
lines changed Original file line number Diff line number Diff line change 1717 - ' --args=--only=terraform_workspace_remote'
1818
1919 - repo : https://github.com/pre-commit/pre-commit-hooks
20- rev : v3.2 .0
20+ rev : v3.4 .0
2121 hooks :
2222 - id : trailing-whitespace
2323 - id : check-merge-conflict
Original file line number Diff line number Diff line change 1+ provider "aws" {
2+ region = " us-west-2"
3+ }
4+
15module "databricks_workspace" {
26 source = " ../../"
37
Original file line number Diff line number Diff line change @@ -8,9 +8,9 @@ output "vpc_route_table_ids" {
88 value = module. databricks_workspace . vpc_route_table_ids
99}
1010
11- output "vpc_security_group_ids " {
12- description = " list of VPC security group IDs "
13- value = module. databricks_workspace . vpc_security_group_ids
11+ output "vpc_security_group_id " {
12+ description = " VPC security group ID "
13+ value = module. databricks_workspace . vpc_security_group_id
1414}
1515output "vpc_subnet_ids" {
1616 description = " list of subnet ids within VPC"
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -8,8 +8,8 @@ output "vpc_route_table_ids" {
88 value = concat (module. vpc . private_route_table_ids , module. vpc . public_route_table_ids )
99}
1010
11- output "vpc_security_group_ids " {
12- description = " list of VPC security group IDs "
11+ output "vpc_security_group_id " {
12+ description = " list of VPC security group ID "
1313 value = [module . vpc . default_security_group_id ]
1414}
1515output "vpc_subnet_ids" {
You can’t perform that action at this time.
0 commit comments