Skip to content

Commit 1e581d9

Browse files
committed
enable metadata for lint generate docs docker commands
1 parent c9501c4 commit 1e581d9

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ docker_test_integration:
6868
.PHONY: docker_test_lint
6969
docker_test_lint:
7070
docker run --rm -it \
71+
-e ENABLE_BPMETADATA='1' \
7172
-v "$(CURDIR)":/workspace \
7273
$(REGISTRY_URL)/${DOCKER_IMAGE_DEVELOPER_TOOLS}:${DOCKER_TAG_VERSION_DEVELOPER_TOOLS} \
7374
/usr/local/bin/test_lint.sh
@@ -76,6 +77,7 @@ docker_test_lint:
7677
.PHONY: docker_generate_docs
7778
docker_generate_docs:
7879
docker run --rm -it \
80+
-e ENABLE_BPMETADATA='1' \
7981
-v "$(CURDIR)":/workspace \
8082
$(REGISTRY_URL)/${DOCKER_IMAGE_DEVELOPER_TOOLS}:${DOCKER_TAG_VERSION_DEVELOPER_TOOLS} \
8183
/bin/bash -c 'source /usr/local/bin/task_helper_functions.sh && generate_docs'

examples/cloud_storage/main.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ module "pubsub" {
4747
}
4848

4949
resource "google_storage_bucket" "test" {
50-
project = var.project_id
51-
name = join("-", ["test_bucket", random_id.bucket_suffix.hex])
52-
location = "europe-west1"
50+
project = var.project_id
51+
name = join("-", ["test_bucket", random_id.bucket_suffix.hex])
52+
location = "europe-west1"
5353
uniform_bucket_level_access = true
5454
}

0 commit comments

Comments
 (0)