-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlocals.tf
More file actions
14 lines (14 loc) · 879 Bytes
/
locals.tf
File metadata and controls
14 lines (14 loc) · 879 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
locals {
account_id = data.aws_caller_identity.current.account_id
region = data.aws_region.current.region
gitleaks_queue_name = "gitleaks-queue"
gitleaks_integration_lambda_function_name = "gitleaks-securityhub-integration"
apigateway_cloudwatch_role_name = "aws-gateway-role-for-cloudwatch"
apigateway_cloudwatch_policy_name = "apigateway-clouwatch-policy"
rest_api_name = "gitleaks-securityhub-api"
rest_api_stage_name = "v1"
leaks_validation_model_name = "LeaksInputModel"
rest_api_key_name = "${local.rest_api_name}-key"
apigateway_sqs_role_name = "apigateway-sqs-role"
apigateway_sqs_policy_name = "apigateway-sqs-policy"
}