Skip to content

Commit 2c34316

Browse files
committed
update docs
1 parent 705dbd1 commit 2c34316

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,10 +204,11 @@ No modules.
204204
| Name | Description | Type | Default | Required |
205205
|------|-------------|------|---------|:--------:|
206206
| <a name="input_ai_api_keys"></a> [ai\_api\_keys](#input\_ai\_api\_keys) | Map of AI API keys where key is the environment variable name (e.g., OPENAI\_API\_KEY, ANTHROPIC\_API\_KEY) and value is the actual API key (stored in Secret Manager) | `map(string)` | `{}` | no |
207-
| <a name="input_app_command"></a> [app\_command](#input\_app\_command) | Command to run the container | `list(string)` | <pre>[<br/> "serve"<br/>]</pre> | no |
207+
| <a name="input_app_command"></a> [app\_command](#input\_app\_command) | Command to run the container | `list(string)` | <pre>[<br/> "hrafnar",<br/> "serve"<br/>]</pre> | no |
208208
| <a name="input_app_cpu"></a> [app\_cpu](#input\_app\_cpu) | CPU allocation for the hrafnar application | `string` | `"1000m"` | no |
209209
| <a name="input_app_env_vars"></a> [app\_env\_vars](#input\_app\_env\_vars) | Environment variables for the hrafnar application | `map(string)` | `{}` | no |
210210
| <a name="input_app_image"></a> [app\_image](#input\_app\_image) | Container image for the hrafnar application (without tag) | `string` | n/a | yes |
211+
| <a name="input_app_image_sha"></a> [app\_image\_sha](#input\_app\_image\_sha) | Container image SHA (takes precedence over tag if provided) | `string` | `""` | no |
211212
| <a name="input_app_image_tag"></a> [app\_image\_tag](#input\_app\_image\_tag) | Container image tag | `string` | `"latest"` | no |
212213
| <a name="input_app_max_instances"></a> [app\_max\_instances](#input\_app\_max\_instances) | Maximum number of instances for the hrafnar application | `number` | `10` | no |
213214
| <a name="input_app_memory"></a> [app\_memory](#input\_app\_memory) | Memory allocation for the hrafnar application | `string` | `"512Mi"` | no |

examples/dev/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,4 +123,4 @@ module "hrafnar_gcp_deploy" {
123123
| <a name="output_database_connection_name"></a> [database\_connection\_name](#output\_database\_connection\_name) | Development database connection name |
124124
| <a name="output_hrafnar_app_url"></a> [hrafnar\_app\_url](#output\_hrafnar\_app\_url) | URL of the hrafnar application in development |
125125
| <a name="output_vpc_name"></a> [vpc\_name](#output\_vpc\_name) | Development VPC network name |
126-
<!-- END_TF_DOCS -->
126+
<!-- END_TF_DOCS -->

examples/dev/main.tf

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,15 +60,14 @@ module "hrafnar_deploy" {
6060
HRAFNAR_SERVER_HOSTNAME = "0.0.0.0"
6161
HRAFNAR_SERVER_PORT = "8080"
6262
HRAFNAR_STORAGE_PERSISTENT_DATABASE_DSN = "sqlite:////var/hrafnar/state.db"
63-
HRAFNAR_ASSISTANTS = "[\"hrafnar.assistants.AgenticAssistant\"]"
6463
HRAFNAR_AUTHENTICATION_METHOD = jsonencode({
6564
cls = "hrafnar.serve.DummyBasicAuth"
6665
password = random_password.hrafnar_auth_password.result
6766
})
6867
}
6968

7069
# Cloudflare DNS integration
71-
enable_cloudflare_dns = true
70+
enable_cloudflare_dns = false
7271
cloudflare_zone_id = var.cloudflare_zone_id
7372
base_domain = var.base_domain
7473
app_subdomain = var.app_subdomain

0 commit comments

Comments
 (0)