Skip to content

Commit

Permalink
Cidr bloack fix (#7188)
Browse files Browse the repository at this point in the history
Signed-off-by: Arvinth C <arvinth.chandrasekaran@progress.com>
  • Loading branch information
ArvinthC3000 committed Jun 21, 2022
1 parent 14d672a commit 60b4d3e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
1 change: 1 addition & 0 deletions components/automate-backend-deployment/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ This provides the `automate-backend-deployment` package.
This package will build a package using terraform/a2ha-terraform, inspecs, test, certs and Makefile.

This is the heart of the a2ha because this component will set up a workspace for a2ha and all the a2ha command will get available after installing this package.

1 change: 1 addition & 0 deletions components/automate-cluster-ctl/readme
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
automate-cluster-ctl

4 changes: 1 addition & 3 deletions terraform/a2ha-terraform/reference_architectures/aws/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@ data "http" "getEc2PrivateIP" {
}

locals {
json_data = "${join(".", [for i, s in split(".", data.http.getEc2PrivateIP.response_body) : (
i == 3 ? 0 : s
)])}/26"
json_data = "${data.http.getEc2PrivateIP.response_body}/32"
}
provider "aws" {
region = var.aws_region
Expand Down

0 comments on commit 60b4d3e

Please sign in to comment.