Skip to content

Commit

Permalink
fix: Fixed _example/complete and dependabot.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
13archit committed Jul 25, 2023
1 parent 6bb0fb9 commit b59d760
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ updates:
- "approvers"

- package-ecosystem: "terraform" # See documentation for possible values
directory: "/" # Location of package manifests
directory: "/_example/basic" # Location of package manifests
schedule:
interval: "weekly"
# Add assignees
Expand All @@ -28,7 +28,7 @@ updates:
open-pull-requests-limit: 3

- package-ecosystem: "terraform" # See documentation for possible values
directory: "/_example/" # Location of package manifests
directory: "/_example/complete" # Location of package manifests
schedule:
interval: "weekly"
# Add assignees
Expand Down
15 changes: 7 additions & 8 deletions _example/complete/example.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,13 @@ provider "aws" {
## VPC Module Call.
##-----------------------------------------------------------------------------
module "vpc" {
source = "../.."
name = "vpc"
environment = "example"
cidr_block = "10.0.0.0/16"
enable_flow_log = true
flow_log_destination_type = "s3" # Comment or remove when flow log destination is set "cloud-watch-logs"
flow_logs_bucket_name = "gc-vpc-flow-logs-bucket" # Comment or remove when flow log destination is set "cloud-watch-logs"
# create_flow_log_cloudwatch_iam_role = true # To be uncomment when flow log destination is set "cloud-watch-logs"
source = "../.."
name = "vpc"
environment = "example"
cidr_block = "10.0.0.0/16"
enable_flow_log = true
flow_log_destination_type = "s3"
flow_logs_bucket_name = "gc-vpc-flow-logs-bucket"
additional_cidr_block = ["172.3.0.0/16", "172.2.0.0/16"]
dhcp_options_domain_name = "service.consul"
dhcp_options_domain_name_servers = ["127.0.0.1", "10.10.0.2"]
Expand Down

0 comments on commit b59d760

Please sign in to comment.