locals.tf 364 B

123456789101112
  1. locals {
  2. # Just to shorten up some references
  3. aws_partition = data.aws_partition.current.partition
  4. aws_account = data.aws_caller_identity.current.account_id
  5. # Used in assume-role policies coming from SAML
  6. saml_signin_page = {
  7. "aws" = "https://signin.aws.amazon.com/saml"
  8. "aws-us-gov" = "https://signin.amazonaws-us-gov.com/saml"
  9. }
  10. }