├── CHANGELOG.md ├── LICENSE ├── README.md ├── data.tf ├── iam_providers.tf ├── iam_roles.tf ├── locals.tf ├── outputs.tf └── variables.tf /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoitech/terraform-aws-saml/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoitech/terraform-aws-saml/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoitech/terraform-aws-saml/HEAD/README.md -------------------------------------------------------------------------------- /data.tf: -------------------------------------------------------------------------------- 1 | data "aws_caller_identity" "current" {} 2 | -------------------------------------------------------------------------------- /iam_providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoitech/terraform-aws-saml/HEAD/iam_providers.tf -------------------------------------------------------------------------------- /iam_roles.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoitech/terraform-aws-saml/HEAD/iam_roles.tf -------------------------------------------------------------------------------- /locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoitech/terraform-aws-saml/HEAD/locals.tf -------------------------------------------------------------------------------- /outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoitech/terraform-aws-saml/HEAD/outputs.tf -------------------------------------------------------------------------------- /variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoitech/terraform-aws-saml/HEAD/variables.tf --------------------------------------------------------------------------------