We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2989a8d commit 9163ebfCopy full SHA for 9163ebf
main.tf
@@ -241,6 +241,12 @@ resource "aws_rds_cluster" "default" {
241
storage_encrypted = "${var.storage_encrypted}"
242
apply_immediately = "${var.apply_immediately}"
243
db_cluster_parameter_group_name = "${var.db_cluster_parameter_group_name}"
244
+
245
+ lifecycle {
246
+ ignore_changes = [
247
+ "availability_zones",
248
+ ]
249
+ }
250
}
251
252
// Geneate an ID when an environment is initialised
variables.tf
@@ -27,6 +27,7 @@ variable "identifier_prefix" {
27
variable "azs" {
28
type = "list"
29
description = "List of AZs to use"
30
+ default = []
31
32
33
variable "replica_count" {
0 commit comments