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
description="List of domain names for your CloudFront distribution. The first domain specified will be classed as the primary domain (used as S3 bucket name, Route53 hosted zone name etc.)"
10
+
11
+
validation {
12
+
condition=length(var.domains) >0
13
+
error_message="domains requires at least one domain to be specified"
14
+
}
15
+
}
16
+
17
+
variable"tags" {
18
+
type=map(string)
19
+
description="The tags to apply to all resources created"
Copy file name to clipboardExpand all lines: static-site/variables.tf
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -13,6 +13,7 @@ variable "hosted_zone" {
13
13
variable"domains" {
14
14
type=list(string)
15
15
description="List of domain names for your CloudFront distribution. The first domain specified will be classed as the primary domain (used as S3 bucket name, Route53 hosted zone name etc.)"
16
+
16
17
validation {
17
18
condition=length(var.domains) >0
18
19
error_message="domains requires at least one domain to be specified"
0 commit comments