Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(ci): more tf variable references #3522

Merged
merged 3 commits into from
Dec 1, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
tf validate & plan
  • Loading branch information
spypsy committed Dec 1, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit 08b095861ac16e0d896951ba18c29bab5b9763ce
2 changes: 2 additions & 0 deletions l1-contracts/REDEPLOY
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Append value to force redeploy
1
7 changes: 3 additions & 4 deletions yarn-project/aztec-faucet/terraform/main.tf
Original file line number Diff line number Diff line change
@@ -79,8 +79,7 @@ resource "aws_ecs_task_definition" "aztec-faucet" {
memory = "4096"
execution_role_arn = data.terraform_remote_state.setup_iac.outputs.ecs_task_execution_role_arn
task_role_arn = data.terraform_remote_state.aztec2_iac.outputs.cloudwatch_logging_ecs_role_arn

container_definitions = <<DEFINITIONS
container_definitions = <<DEFINITIONS
[
{
"name": "${var.DEPLOY_TAG}-faucet",
@@ -123,8 +122,8 @@ resource "aws_ecs_task_definition" "aztec-faucet" {
},
{
"name": "PRIVATE_KEY",
"value": "${var.PRIVATE_KEY}"
}
"value": "${var.FAUCET_PRIVATE_KEY}"
},
{
"name": "INTERVAL",
"value": "86400"
2 changes: 1 addition & 1 deletion yarn-project/aztec-faucet/terraform/variables.tf
Original file line number Diff line number Diff line change
@@ -20,7 +20,7 @@ variable "CHAIN_ID" {
type = string
}

variable "PRIVATE_KEY" {
variable "FAUCET_PRIVATE_KEY" {
type = string
}