Skip to content

Commit

Permalink
Fix aws provider bug
Browse files Browse the repository at this point in the history
Temporary solution for the fixing bug
hashicorp/terraform-provider-aws#11858
  • Loading branch information
Mykola Kruliv committed Feb 6, 2020
1 parent 6087981 commit 89ce00b
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ resource "aws_cognito_user_pool" "pool" {
sms_authentication_message = var.sms_authentication_message
sms_verification_message = var.sms_verification_message
username_attributes = var.username_attributes
lifecycle {
ignore_changes = [
admin_create_user_config.0.unused_account_validity_days
]
}

# admin_create_user_config
dynamic "admin_create_user_config" {
Expand Down

0 comments on commit 89ce00b

Please sign in to comment.