forked from HHS/simpler-grants-gov
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tf
19 lines (15 loc) · 751 Bytes
/
main.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
locals {
# Machine readable project name (lower case letters, dashes, and underscores)
# This will be used in names of AWS resources
project_name = "simpler-grants-gov"
# Project owner (e.g. navapbc). Used for tagging infra resources.
owner = "navapbc"
# URL of project source code repository
code_repository_url = "https://github.com/HHS/simpler-grants-gov"
# Default AWS region for project (e.g. us-east-1, us-east-2, us-west-1).
# This is dependent on where your project is located (if regional)
# otherwise us-east-1 is a good default
default_region = "us-east-1"
github_actions_role_name = "${local.project_name}-github-actions"
aws_services_security_group_name_prefix = "aws-service-vpc-endpoints"
}