Skip to content

Commit f027480

Browse files
authored
Hotfix/v1.10.5 (#261)
# Goals Had to cut the indexer cost bleeding. Didn't want to deal with the uncertainty of queue fixes.
1 parent 086decd commit f027480

File tree

8 files changed

+40
-40
lines changed

8 files changed

+40
-40
lines changed

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474
ipni-announce-urls: ${{ vars.PROD_IPNI_ANNOUNCE_URLS }}
7575
ipni-format-peer-id: ${{ vars.PROD_IPNI_FORMAT_PEER_ID }}
7676
ipni-format-endpoint: ${{ vars.PROD_IPNI_FORMAT_ENDPOINT }}
77-
apply: ${{ github.event_name == 'workflow_run' && github.event.workflow_run.conclusion == 'success' }}
77+
apply: ${{ (github.event_name == 'workflow_run' && github.event.workflow_run.conclusion == 'success') || (github.event_name == 'workflow_dispatch' && contains(github.ref, 'refs/tags')) }}
7878
secrets:
7979
aws-account-id: ${{ secrets.PROD_AWS_ACCOUNT_ID }}
8080
aws-region: ${{ secrets.PROD_AWS_REGION }}

.storoku.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,4 +89,4 @@
8989
"warm"
9090
],
9191
"writeToContainer": false
92-
}
92+
}

deploy/app/.terraform.lock.hcl

Lines changed: 11 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

deploy/app/main.tf

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -40,23 +40,23 @@ provider "aws" {
4040

4141

4242
module "app" {
43-
source = "github.com/storacha/storoku//app?ref=v0.4.6"
44-
private_key = var.private_key
45-
httpport = 8080
46-
principal_mapping = var.principal_mapping
47-
did = var.did
48-
app = var.app
49-
appState = var.app
50-
deployment_config = local.deployment_config
43+
source = "github.com/storacha/storoku//app?ref=v0.5.0"
44+
private_key = var.private_key
45+
httpport = 8080
46+
principal_mapping = var.principal_mapping
47+
did = var.did
48+
app = var.app
49+
appState = var.app
5150
write_to_container = false
5251
environment = terraform.workspace
5352
network = var.network
5453
# if there are any env vars you want available only to your container
5554
# in the vpc as opposed to set in the dockerfile, enter them here
5655
# NOTE: do not put sensitive data in env-vars. use secrets
5756
deployment_env_vars = []
58-
image_tag = var.image_tag
59-
create_db = false
57+
image_tag = var.image_tag
58+
deployment_config = local.deployment_config
59+
create_db = false
6060
# enter secret values your app will use here -- these will be available
6161
# as env vars in the container at runtime
6262
secrets = {

deploy/shared/.terraform.lock.hcl

Lines changed: 11 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

deploy/shared/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ provider "aws" {
4949
}
5050

5151
module "shared" {
52-
source = "github.com/storacha/storoku//shared?ref=v0.4.6"
52+
source = "github.com/storacha/storoku//shared?ref=v0.5.0"
5353
providers = {
5454
aws = aws
5555
aws.dev = aws.dev

deploy/shared/variables.tf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,18 @@ variable "app" {
55

66
variable "allowed_account_id" {
77
description = "account id used for AWS"
8-
type = string
8+
type = string
99
}
1010

1111
variable "domain_base" {
12-
type = string
12+
type = string
1313
default = ""
1414
}
1515

1616
variable "create_shared_dev_resources" {
1717
description = "create shared resources (vpc, caches, db, kms) for dev environments"
18-
type = bool
19-
default = false
18+
type = bool
19+
default = true
2020
}
2121

2222

version.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"version": "v1.10.3"
2+
"version": "v1.10.5"
33
}

0 commit comments

Comments
 (0)