You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+12-4Lines changed: 12 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,13 @@ You'll need [Access Keys](https://docs.aws.amazon.com/powershell/latest/userguid
24
24
25
25
## Environment variables
26
26
27
-
For envirnoment variables in your app, you can provide a `repo_env` file in your repo, a `.env` file in GitHub Secrets named `DOT_ENV`, or an AWS Secret. Then hook it up in your `docker-compose.yaml` file like:
27
+
For envirnoment variables in your app, you can provide:
28
+
-`repo_env` - A file in your repo that contains env vars
29
+
-`ghv_env` - An entry in [Github actions variables](https://docs.github.com/en/actions/learn-github-actions/variables)
30
+
-`dot_env` - An entry in [Github secrets](https://docs.github.com/es/actions/security-guides/encrypted-secrets)
31
+
-`aws_secret_env` - The path to a JSON format secret in AWS
32
+
33
+
Then hook it up in your `docker-compose.yaml` file like:
@@ -121,9 +128,10 @@ The following inputs can be used as `step.with` keys
121
128
|`no_cert`| Boolean | Set this to true if no certificate is present for the domain. **See note **. Defaults to `false`|
122
129
|`tf_state_bucket`| String | AWS S3 bucket to use for Terraform state. |
123
130
|`tf_state_bucket_destroy`| Boolean | Force purge and deletion of S3 bucket defined. Any file contained there will be destroyed. (Default is `false`). `stack_destroy` must also be `true`|
124
-
|`repo_env`| String |`.env` file containing environment variables to be used with the app. Name defaults to `repo_env`. Check **SEnvironment variables** note |
125
-
|`dot_env`| String |`.env` file to be used with the app. This is the name of the [Github secret](https://docs.github.com/es/actions/security-guides/encrypted-secrets). Check **SEnvironment variables** note |
126
-
|`aws_secret_env`| String | Secret name to pull environment variables from AWS Secret Manager. Check **SEnvironment variables** note |
131
+
|`repo_env`| String |`.env` file containing environment variables to be used with the app. Name defaults to `repo_env`. Check **Environment variables** note |
132
+
|`dot_env`| String |`.env` file to be used with the app. This is the name of the [Github secret](https://docs.github.com/es/actions/security-guides/encrypted-secrets). Check **Environment variables** note |
133
+
|`ghv_env`| String |`.env` file to be used with the app. This is the name of the [Github variables](https://docs.github.com/en/actions/learn-github-actions/variables). Check **Environment variables** note |
134
+
|`aws_secret_env`| String | Secret name to pull environment variables from AWS Secret Manager. Check **Environment variables** note |
127
135
|`app_port`| String | port to expose for the app |
128
136
|`lb_port`| String | Load balancer listening port. Defaults to 80 if NO FQDN provided, 443 if FQDN provided |
129
137
|`lb_healthcheck`| String | Load balancer health check string. Defaults to HTTP:app_port|
0 commit comments