Skip to content

Commit 90c409f

Browse files
author
Naomi Trevino
authored
Merge pull request #428 from NEU-DSG/tf-fix-amplify-app-name
remove '-' from prod amplify name
2 parents 30a34c5 + 6e38827 commit 90c409f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

terraform/website.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ in {
3232
let apiUrl = "\${aws_api_gateway_deployment.functions_api.invoke_url}";
3333
in {
3434
lifecycle.prevent_destroy = false;
35-
name = "dailp-${if config.setup.stage == "prod" then "" else config.setup.stage}";
35+
name = "dailp${if config.setup.stage == "prod" then "" else "-${config.setup.stage}"}";
3636
description = "Digital Archive of Indigenous Language Persistence";
3737
repository = lib.toLower (getEnv "GIT_REPOSITORY_URL");
3838
oauth_token = getEnv "OAUTH_TOKEN";

0 commit comments

Comments
 (0)