summaryrefslogtreecommitdiff
path: root/.changeset/four-tips-accept.md
diff options
context:
space:
mode:
authorGravatar Houston (Bot) <108291165+astrobot-houston@users.noreply.github.com> 2024-09-06 09:47:30 -0700
committerGravatar GitHub <noreply@github.com> 2024-09-06 12:47:30 -0400
commit0d50d7545eae102cadff80e4963ef9b27eabba6c (patch)
treed37024bb3726f9b43fc55f927bf34c742af89f1d /.changeset/four-tips-accept.md
parentc0c96452a26a2fb56acbc99cc67fd1e808e66d0e (diff)
downloadastro-@astrojs/preact@3.5.3.tar.gz
astro-@astrojs/preact@3.5.3.tar.zst
astro-@astrojs/preact@3.5.3.zip
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Diffstat (limited to '.changeset/four-tips-accept.md')
-rw-r--r--.changeset/four-tips-accept.md23
1 files changed, 0 insertions, 23 deletions
diff --git a/.changeset/four-tips-accept.md b/.changeset/four-tips-accept.md
deleted file mode 100644
index bfab50473..000000000
--- a/.changeset/four-tips-accept.md
+++ /dev/null
@@ -1,23 +0,0 @@
----
-'astro': patch
----
-
-Allow passing a cryptography key via ASTRO_KEY
-
-For Server islands Astro creates a cryptography key in order to hash props for the islands, preventing accidental leakage of secrets.
-
-If you deploy to an environment with rolling updates then there could be multiple instances of your app with different keys, causing potential key mismatches.
-
-To fix this you can now pass the `ASTRO_KEY` environment variable to your build in order to reuse the same key.
-
-To generate a key use:
-
-```
-astro create-key
-```
-
-This will print out an environment variable to set like:
-
-```
-ASTRO_KEY=PIAuyPNn2aKU/bviapEuc/nVzdzZPizKNo3OqF/5PmQ=
-```