Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ repos:
- '--args=--only=terraform_workspace_remote'

- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v3.2.0
rev: v3.4.0
hooks:
- id: trailing-whitespace
- id: check-merge-conflict
Expand Down
4 changes: 4 additions & 0 deletions examples/sample/main.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
provider "aws" {
region = "us-west-2"
}

module "databricks_workspace" {
source = "../../"

Expand Down
6 changes: 3 additions & 3 deletions examples/sample/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ output "vpc_route_table_ids" {
value = module.databricks_workspace.vpc_route_table_ids
}

output "vpc_security_group_ids" {
description = "list of VPC security group IDs"
value = module.databricks_workspace.vpc_security_group_ids
output "vpc_security_group_id" {
description = "VPC security group ID"
value = module.databricks_workspace.vpc_security_group_id
}
output "vpc_subnet_ids" {
description = "list of subnet ids within VPC"
Expand Down
9 changes: 0 additions & 9 deletions examples/test/variables.tf

This file was deleted.

4 changes: 2 additions & 2 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ output "vpc_route_table_ids" {
value = concat(module.vpc.private_route_table_ids, module.vpc.public_route_table_ids)
}

output "vpc_security_group_ids" {
description = "list of VPC security group IDs"
output "vpc_security_group_id" {
description = "list of VPC security group ID"
value = [module.vpc.default_security_group_id]
}
output "vpc_subnet_ids" {
Expand Down