terraform-provider-matrix

git clone git://archive.git.mtrnord.blog/MTRNord/terraform-provider-matrix.git
Log | Files | Refs | README | LICENSE

provider.tf (649B)


      1 provider "matrix" {
      2   # The client/server URL to access your matrix homeserver with.
      3   # Environment variable: MATRIX_CLIENT_SERVER_URL
      4   client_server_url = "https://matrix.org"
      5 
      6   # The default access token to use for things like content uploads.
      7   # Does not apply for provisioning users.
      8   # Environment variable: MATRIX_DEFAULT_ACCESS_TOKEN
      9   default_access_token = "MDAxSomeRandomString"
     10 
     11   # The default userID to use for things like content uploads.
     12   # Must match the user that owns the default_access_token.
     13   # Does not apply for provisioning users.
     14   # Environment variable: MATRIX_DEFAULT_USERID
     15   default_user_id = "@meow:matrix.org"
     16 }