-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DS-2050 Performance and Regression SG (#77)
* DS-2050 Adding Performance and Regression SG post seperation and deletion of legacy SG * DS-2050 Creating variables and egress for Performance and Regression * DS-2050 Add ingress rules for Performance and Regression * DS-2050 Add ingress rules for Performance and Regression * DS-2050 Add Environment variable to live and put make file
- Loading branch information
1 parent
864a865
commit 7cb2da2
Showing
6 changed files
with
61 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,11 @@ | ||
data "aws_security_group" "datastore" { | ||
name = var.db_security_group_name | ||
} | ||
|
||
data "aws_security_group" "datastore_performance" { | ||
name = var.db_performance_security_group_name | ||
} | ||
|
||
data "aws_security_group" "datastore_regression" { | ||
name = var.db_regression_security_group_name | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters