Skip to content

Commit 6c61c22

Browse files
authored
Merge pull request #29 from tomarv2/develop
Develop
2 parents 515cec6 + fa73330 commit 6c61c22

File tree

5 files changed

+10
-15
lines changed

5 files changed

+10
-15
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ repos:
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

examples/sample/main.tf

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
provider "aws" {
2+
region = "us-west-2"
3+
}
4+
15
module "databricks_workspace" {
26
source = "../../"
37

examples/sample/outputs.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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
}
1515
output "vpc_subnet_ids" {
1616
description = "list of subnet ids within VPC"

examples/test/variables.tf

Lines changed: 0 additions & 9 deletions
This file was deleted.

outputs.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
}
1515
output "vpc_subnet_ids" {

0 commit comments

Comments
 (0)