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
| <aname="input_aws_account_id"></a> [aws\_account\_id](#input\_aws\_account\_id)| The AWS Account ID (numeric) |`string`| n/a | yes |
13
13
| <aname="input_ca_pem_filename"></a> [ca\_pem\_filename](#input\_ca\_pem\_filename)| Filename for the CA truststore file within the s3 bucket |`string`|`null`| no |
14
-
| <aname="input_commit_id"></a> [commit\_id](#input\_commit\_id)| The commit to deploy. Must be in the tree for branch\_name |`string`|`"HEAD"`| no |
15
14
| <aname="input_component"></a> [component](#input\_component)| The variable encapsulating the name of this component |`string`|`"supapi"`| no |
16
15
| <aname="input_default_tags"></a> [default\_tags](#input\_default\_tags)| A map of default tags to apply to all taggable resources within the component |`map(string)`|`{}`| no |
17
16
| <aname="input_enable_backups"></a> [enable\_backups](#input\_enable\_backups)| Enable backups |`bool`|`false`| no |
Copy file name to clipboardExpand all lines: infrastructure/terraform/components/api/variables.tf
+5-47Lines changed: 5 additions & 47 deletions
Original file line number
Diff line number
Diff line change
@@ -51,46 +51,16 @@ variable "default_tags" {
51
51
# Variables specific to the component
52
52
##
53
53
54
-
variable"ca_pem_filename" {
55
-
type=string
56
-
description="Filename for the CA truststore file within the s3 bucket"
57
-
default=null
58
-
}
59
-
60
-
variable"commit_id" {
61
-
type=string
62
-
description="The commit to deploy. Must be in the tree for branch_name"
63
-
default="HEAD"
64
-
}
65
-
66
-
variable"enable_backups" {
67
-
type=bool
68
-
description="Enable backups"
69
-
default=false
70
-
}
71
-
72
-
variable"force_destroy" {
73
-
type=bool
74
-
description="Flag to force deletion of S3 buckets"
75
-
default=false
76
-
}
77
-
78
-
variable"force_lambda_code_deploy" {
79
-
type=bool
80
-
description="If the lambda package in s3 has the same commit id tag as the terraform build branch, the lambda will not update automatically. Set to True if making changes to Lambda code from on the same commit for example during development"
81
-
default=false
82
-
}
83
-
84
54
variable"kms_deletion_window" {
85
55
type=string
86
56
description="When a kms key is deleted, how long should it wait in the pending deletion state?"
87
57
default="30"
88
58
}
89
59
90
-
variable"letter_table_ttl_hours" {
60
+
variable"log_retention_in_days" {
91
61
type=number
92
-
description="Number of hours to set as TTL on letters table"
93
-
default=24
62
+
description="The retention period in days for the Cloudwatch Logs events to be retained, default of 0 is indefinite"
63
+
default=0
94
64
}
95
65
96
66
variable"log_level" {
@@ -99,24 +69,12 @@ variable "log_level" {
99
69
default="INFO"
100
70
}
101
71
102
-
variable"log_retention_in_days" {
103
-
type=number
104
-
description="The retention period in days for the Cloudwatch Logs events to be retained, default of 0 is indefinite"
105
-
default=0
106
-
}
107
-
108
-
variable"manually_configure_mtls_truststore" {
72
+
variable"force_lambda_code_deploy" {
109
73
type=bool
110
-
description="Manually manage the truststore used for API Gateway mTLS (e.g. for prod environment)"
74
+
description="If the lambda package in s3 has the same commit id tag as the terraform build branch, the lambda will not update automatically. Set to True if making changes to Lambda code from on the same commit for example during development"
111
75
default=false
112
76
}
113
77
114
-
variable"max_get_limit" {
115
-
type=number
116
-
description="Default limit to apply to GET requests that support pagination"
117
-
default=2500
118
-
}
119
-
120
78
variable"parent_acct_environment" {
121
79
type=string
122
80
description="Name of the environment responsible for the acct resources used, affects things like DNS zone. Useful for named dev environments"
0 commit comments