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
feat(seo): GSC verification, robots.txt, IndexNow on deploy
- infra: optional google_site_verification TXT on the apex (Route 53)
- docs: robots.txt (allows AI crawlers) + IndexNow key file
- ci: ping IndexNow after CloudFront invalidation; serve *.txt as must-revalidate instead of immutable
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: infra/terraform/variables.tf
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -14,6 +14,12 @@ variable "route53_zone_name" {
14
14
type=string
15
15
}
16
16
17
+
variable"google_site_verification" {
18
+
description="Google Search Console domain-property TXT verification token (the full 'google-site-verification=...' string). Empty = no record created."
19
+
type=string
20
+
default=""
21
+
}
22
+
17
23
variable"github_repo" {
18
24
description="owner/repo allowed to assume the deploy role via GitHub OIDC."
0 commit comments