Skip to content

Commit b59d760

Browse files
committed
fix: Fixed _example/complete and dependabot.yml
1 parent 6bb0fb9 commit b59d760

File tree

2 files changed

+9
-10
lines changed

2 files changed

+9
-10
lines changed

.github/dependabot.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ updates:
1515
- "approvers"
1616

1717
- package-ecosystem: "terraform" # See documentation for possible values
18-
directory: "/" # Location of package manifests
18+
directory: "/_example/basic" # Location of package manifests
1919
schedule:
2020
interval: "weekly"
2121
# Add assignees
@@ -28,7 +28,7 @@ updates:
2828
open-pull-requests-limit: 3
2929

3030
- package-ecosystem: "terraform" # See documentation for possible values
31-
directory: "/_example/" # Location of package manifests
31+
directory: "/_example/complete" # Location of package manifests
3232
schedule:
3333
interval: "weekly"
3434
# Add assignees

_example/complete/example.tf

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,13 @@ provider "aws" {
55
## VPC Module Call.
66
##-----------------------------------------------------------------------------
77
module "vpc" {
8-
source = "../.."
9-
name = "vpc"
10-
environment = "example"
11-
cidr_block = "10.0.0.0/16"
12-
enable_flow_log = true
13-
flow_log_destination_type = "s3" # Comment or remove when flow log destination is set "cloud-watch-logs"
14-
flow_logs_bucket_name = "gc-vpc-flow-logs-bucket" # Comment or remove when flow log destination is set "cloud-watch-logs"
15-
# create_flow_log_cloudwatch_iam_role = true # To be uncomment when flow log destination is set "cloud-watch-logs"
8+
source = "../.."
9+
name = "vpc"
10+
environment = "example"
11+
cidr_block = "10.0.0.0/16"
12+
enable_flow_log = true
13+
flow_log_destination_type = "s3"
14+
flow_logs_bucket_name = "gc-vpc-flow-logs-bucket"
1615
additional_cidr_block = ["172.3.0.0/16", "172.2.0.0/16"]
1716
dhcp_options_domain_name = "service.consul"
1817
dhcp_options_domain_name_servers = ["127.0.0.1", "10.10.0.2"]

0 commit comments

Comments
 (0)