diff --git a/iam-saml/main.tf b/iam-saml/main.tf index 1598789..e4ed5e6 100644 --- a/iam-saml/main.tf +++ b/iam-saml/main.tf @@ -63,7 +63,7 @@ resource "null_resource" "saml_metadata" { resource "aws_iam_saml_provider" "saml" { name = var.saml_provider_name - saml_metadata_document = fileexists(local.saml_metadata_file_exists) ? file(local.saml_metadata_file) : "" + saml_metadata_document = fileexists(local.saml_metadata_file) ? file(local.saml_metadata_file) : "" depends_on = [null_resource.saml_metadata] # when the provider supports tags, enable this section