Skip to content

Commit

Permalink
Fix terraform checks
Browse files Browse the repository at this point in the history
  • Loading branch information
aloftus23 committed Dec 13, 2024
1 parent 9cd1fd7 commit df9d543
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions infrastructure/stage.tfvars
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ ssm_lg_workspace_name = "/crossfeed/staging/LG_WORKSPACE_NAME"
ssm_pe_api_key = "/crossfeed/staging/PE_API_KEY"
ssm_cf_api_key = "/crossfeed/staging/CF_API_KEY"
ssm_whoisxml_api_key = "/crossfeed/staging/WHOIS_XML_KEY"
ssm_qualys_username = "/crossfeed/staging/QUALYS_USERNAME"
ssm_qualys_password = "/crossfeed/staging/QUALYS_PASSWORD"
ssm_qualys_username = "/crossfeed/staging/QUALYS_USERNAME"
ssm_qualys_password = "/crossfeed/staging/QUALYS_PASSWORD"
db_group_name = "crossfeed-staging-db-group"
worker_ecs_repository_name = "crossfeed-staging-worker"
worker_ecs_cluster_name = "crossfeed-staging-worker"
Expand Down
4 changes: 2 additions & 2 deletions infrastructure/worker.tf
Original file line number Diff line number Diff line change
Expand Up @@ -391,9 +391,9 @@ data "aws_ssm_parameter" "xpanse_api_key" { name = var.ssm_xpanse_api_key }

data "aws_ssm_parameter" "whoisxml_api_key" { name = var.ssm_whoisxml_api_key }

data "aws_ssm_parameter" "qualys_username" { name = var.ssm_qualys_username}
data "aws_ssm_parameter" "qualys_username" { name = var.ssm_qualys_username }

data "aws_ssm_parameter" "qualys_password" { name = var.ssm_qualys_password}
data "aws_ssm_parameter" "qualys_password" { name = var.ssm_qualys_password }

data "aws_ssm_parameter" "xpanse_auth_id" { name = var.ssm_xpanse_auth_id }

Expand Down

0 comments on commit df9d543

Please sign in to comment.