Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Feb 24, 2021
1 parent 729698d commit c13aae8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion iam-saml/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c13aae8

Please sign in to comment.