Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CIRD block restriction fix #7188

Merged
merged 1 commit into from
Jun 21, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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