Skip to content

Commit

Permalink
Remove variables
Browse files Browse the repository at this point in the history
Variables are not needed yet as all values are constants.
  • Loading branch information
MahmudH committed Apr 3, 2024
1 parent 4a09a7d commit 1b486dd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions modules/tld-redirect/service.tf
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
resource "fastly_service_vcl" "service" {
name = "${title(var.environment)} TLD Redirect"
name = "Production TLD Redirect"
comment = ""

domain {
name = var.domain
name = "gov.uk"
}

vcl {
main = true
name = "main"
content = file("${path.module}/${var.vcl_template_file}")
content = file("${path.module}/tldredirect.vcl")
}
}
File renamed without changes.
Empty file removed modules/tld-redirect/variable.tf
Empty file.

0 comments on commit 1b486dd

Please sign in to comment.