@hasna/uptime 0.1.10 → 0.1.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -26,6 +26,41 @@ output "evidence_bucket" {
26
26
  value = aws_s3_bucket.evidence.bucket
27
27
  }
28
28
 
29
+ output "kms_key_arn" {
30
+ value = var.kms_key_arn
31
+ }
32
+
33
+ output "secret_refs" {
34
+ value = {
35
+ app_env = var.app_env_secret_arn
36
+ hosted_token = var.hosted_token_secret_arn
37
+ public_probe = var.public_probe_secret_arn
38
+ reporting = var.reporting_secret_arn
39
+ }
40
+ }
41
+
42
+ output "log_group_names" {
43
+ value = merge(
44
+ { image_builder = aws_cloudwatch_log_group.image_builder.name },
45
+ { for role, group in aws_cloudwatch_log_group.service : role => group.name },
46
+ )
47
+ }
48
+
49
+ output "alarm_names" {
50
+ value = {
51
+ web_5xx = aws_cloudwatch_metric_alarm.web_5xx.alarm_name
52
+ web_unhealthy = aws_cloudwatch_metric_alarm.web_unhealthy.alarm_name
53
+ }
54
+ }
55
+
56
+ output "backup_vault_name" {
57
+ value = aws_backup_vault.data.name
58
+ }
59
+
60
+ output "backup_plan_id" {
61
+ value = aws_backup_plan.data.id
62
+ }
63
+
29
64
  output "efs_file_system_id" {
30
65
  value = aws_efs_file_system.data.id
31
66
  }
@@ -15,7 +15,7 @@ public_subnet_ids = ["subnet-replace-public-a", "subnet-replace-public-b"
15
15
  alb_ingress_cidr_blocks = []
16
16
  private_subnet_ids = ["subnet-replace-private-a", "subnet-replace-private-b"]
17
17
  container_image = "123456789012.dkr.ecr.us-east-1.amazonaws.com/open-uptime@sha256:aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
18
- runtime_package_version = "0.1.10"
18
+ runtime_package_version = "0.1.12"
19
19
  certificate_arn = null
20
20
  hosted_zone_id = null
21
21
  app_env_secret_arn = "arn:aws:secretsmanager:us-east-1:123456789012:secret:open-uptime/prod/app/env"
@@ -116,7 +116,7 @@ variable "container_image" {
116
116
  variable "runtime_package_version" {
117
117
  description = "Published @hasna/uptime package version that CodeBuild should build into the ECR image."
118
118
  type = string
119
- default = "0.1.10"
119
+ default = "0.1.12"
120
120
 
121
121
  validation {
122
122
  condition = can(regex("^[0-9]+\\.[0-9]+\\.[0-9]+(-[0-9A-Za-z.-]+)?$", var.runtime_package_version))
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hasna/uptime",
3
- "version": "0.1.10",
3
+ "version": "0.1.12",
4
4
  "description": "Local-first uptime and downtime monitoring service with CLI, MCP, SDK, SQLite persistence, and a dashboard.",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",