@@ -14,15 +14,15 @@ class AppConfig(BaseSettings):
14
14
stage : str = pydantic .Field (description = "Stage of deployment" , default = "test" )
15
15
# because of its validator, `tags` should always come after `project_id` and `stage`
16
16
tags : Dict [str , str ] | None = pydantic .Field (
17
- description = """Tags to apply to resources. If none provided,
17
+ description = """Tags to apply to resources. If none provided,
18
18
will default to the defaults defined in `default_tags`.
19
- Note that if tags are passed to the CDK CLI via `--tags`,
19
+ Note that if tags are passed to the CDK CLI via `--tags`,
20
20
they will override any tags defined here.""" ,
21
21
default = None ,
22
22
)
23
23
auth_provider_jwks_url : str | None = pydantic .Field (
24
24
description = """Auth Provider JSON Web Key Set URL for
25
- ingestion authentication. If not provided,
25
+ ingestion authentication. If not provided,
26
26
no authentication will be required.""" ,
27
27
default = None ,
28
28
)
@@ -51,8 +51,8 @@ class AppConfig(BaseSettings):
51
51
default = 0 ,
52
52
)
53
53
bastion_host : bool = pydantic .Field (
54
- description = """Whether to create a bastion host. It can typically
55
- be used to make administrative connections to the database if
54
+ description = """Whether to create a bastion host. It can typically
55
+ be used to make administrative connections to the database if
56
56
`public_db_subnet` is False""" ,
57
57
default = False ,
58
58
)
@@ -62,7 +62,7 @@ class AppConfig(BaseSettings):
62
62
default = False ,
63
63
)
64
64
bastion_host_allow_ip_list : List [str ] = pydantic .Field (
65
- description = """YAML file containing list of IP addresses to
65
+ description = """YAML file containing list of IP addresses to
66
66
allow SSH access to the bastion host. Ignored if `bastion_host`
67
67
equals `False`.""" ,
68
68
default = [],
@@ -78,18 +78,18 @@ class AppConfig(BaseSettings):
78
78
default = [],
79
79
)
80
80
acm_certificate_arn : str | None = pydantic .Field (
81
- description = """ARN of ACM certificate to use for
81
+ description = """ARN of ACM certificate to use for
82
82
custom domain names. If provided,
83
83
CDNs are created for all the APIs""" ,
84
84
default = None ,
85
85
)
86
86
stac_api_custom_domain : str | None = pydantic .Field (
87
- description = """Custom domain name for the STAC API.
87
+ description = """Custom domain name for the STAC API.
88
88
Must provide `acm_certificate_arn`""" ,
89
89
default = None ,
90
90
)
91
91
titiler_pgstac_api_custom_domain : str | None = pydantic .Field (
92
- description = """Custom domain name for the titiler pgstac API.
92
+ description = """Custom domain name for the titiler pgstac API.
93
93
Must provide `acm_certificate_arn`""" ,
94
94
default = None ,
95
95
)
@@ -99,7 +99,7 @@ class AppConfig(BaseSettings):
99
99
default = None ,
100
100
)
101
101
tipg_api_custom_domain : str | None = pydantic .Field (
102
- description = """Custom domain name for the tipg API.
102
+ description = """Custom domain name for the tipg API.
103
103
Must provide `acm_certificate_arn`""" ,
104
104
default = None ,
105
105
)
@@ -136,7 +136,7 @@ def validate_stac_browser_version(self) -> "AppConfig":
136
136
and self .stac_api_custom_domain is None
137
137
):
138
138
raise ValueError (
139
- """If a STAC browser version is provided,
139
+ """If a STAC browser version is provided,
140
140
a custom domain must be provided for the STAC API"""
141
141
)
142
142
else :
@@ -153,7 +153,7 @@ def validate_acm_certificate_arn(self) -> "AppConfig":
153
153
]
154
154
):
155
155
raise ValueError (
156
- """If any custom domain is provided,
156
+ """If any custom domain is provided,
157
157
an ACM certificate ARN must be provided"""
158
158
)
159
159
else :
0 commit comments