File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -59,6 +59,15 @@ resource "cloudflare_dns_record" "nightly" {
5959 ttl = 1
6060}
6161
62+ # --- VS Code Marketplace Domain Verification ---
63+ resource "cloudflare_dns_record" "vscode_verification" {
64+ zone_id = var. zone_id
65+ name = " _visual-studio-marketplace-pywire"
66+ content = var. vscode_marketplace_verification_code
67+ type = " TXT"
68+ ttl = 3600
69+ }
70+
6271
6372
6473
Original file line number Diff line number Diff line change @@ -19,4 +19,10 @@ variable "forwarding_rules" {
1919variable "maintainer_emails" {
2020 description = " List of emails that receive the 'maintainers@' broadcast"
2121 type = list (string )
22+ }
23+
24+ variable "vscode_marketplace_verification_code" {
25+ description = " TXT record content for VS Code Marketplace domain verification"
26+ type = string
27+ sensitive = false
2228}
You can’t perform that action at this time.
0 commit comments