Skip to content

Commit

Permalink
updating of security groups
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcalalang committed Jan 10, 2024
1 parent 6a7fdc3 commit 6e71aca
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
1 change: 1 addition & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,7 @@ jobs:
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
BIGIP_USER: ${{ secrets.BIGIP_USER }}
BIGIP_PASSWORD: ${{ secrets.BIGIP_PASSWORD }}
TF_VAR_allowed_ips: ${{ secrets.ALLOWED_IPS }}
TF_VAR_big-ip-username: ${{ secrets.BIGIP_USER }}
TF_VAR_big-ip-password: ${{ secrets.BIGIP_PASSWORD }}

Expand Down
3 changes: 1 addition & 2 deletions big-ip/terraform/infrastructure/variables.auto.tfvars

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions big-ip/terraform/infrastructure/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

variable "allowed_ips" {
type = list(any)
description = "Allowed IP addresses form management access"
description = "Allowed Client IP addresses for management access"
}
variable "allowed_github_ips" {
type = list(any)
description = "Allowed IP addresses form management access"
description = "Allowed GitHub action IP addresses for management access"
}
variable "bigip_ready" {
type = string
Expand Down

0 comments on commit 6e71aca

Please sign in to comment.