Skip to content

Commit

Permalink
Merge pull request #52 from ivankorn/51
Browse files Browse the repository at this point in the history
 Add support for Terraform 0.12
  • Loading branch information
aaron-lane committed Sep 30, 2019
2 parents d3ddcdb + 0552334 commit 0928a49
Show file tree
Hide file tree
Showing 60 changed files with 1,823 additions and 1,301 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@
**/backend.tf
**/terraform.tfvars
**/values-*.yaml
**/*.tfplan
**/*.tfplan
**/credentials.json
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ Modular Global HTTP Load Balancer for GCE using forwarding rules.

## Usage

```ruby
```HCL
module "gce-lb-http" {
source = "GoogleCloudPlatform/lb-http/google"
name = "group-http-lb"
target_tags = ["${module.mig1.target_tags}", "${module.mig2.target_tags}"]
target_tags = [module.mig1.target_tags, module.mig2.target_tags]
backends = {
"0" = [
{ group = "${module.mig1.instance_group}" },
{ group = "${module.mig2.instance_group}" }
{ group = module.mig1.instance_group },
{ group = module.mig2.instance_group }
],
}
backend_params = [
Expand Down
109 changes: 0 additions & 109 deletions examples/basic/gceme.sh.tpl

This file was deleted.

87 changes: 0 additions & 87 deletions examples/basic/main.tf

This file was deleted.

53 changes: 0 additions & 53 deletions examples/basic/mig.tf

This file was deleted.

101 changes: 0 additions & 101 deletions examples/http-nat-gateway/main.tf

This file was deleted.

Loading

0 comments on commit 0928a49

Please sign in to comment.