This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2022-09-27
Channels
- # announcements (1)
- # aws (8)
- # babashka (77)
- # babashka-sci-dev (8)
- # beginners (29)
- # biff (2)
- # calva (13)
- # cljs-dev (1)
- # clojure (42)
- # clojure-europe (205)
- # clojure-nl (1)
- # clojure-norway (5)
- # clojure-uk (4)
- # clojurescript (58)
- # conjure (9)
- # data-science (7)
- # datalevin (19)
- # datomic (3)
- # emacs (7)
- # fulcro (15)
- # gratitude (8)
- # lsp (52)
- # meander (3)
- # membrane (92)
- # off-topic (12)
- # re-frame (16)
- # reagent (4)
- # reitit (15)
- # releases (1)
- # sci (30)
- # shadow-cljs (34)
- # tools-deps (5)
- # xtdb (17)
How can I tell Cider what AWS profile I want to use when I start my repl?
i'm confused, whats the overlap between cider and your aws profile?
are you speaking generally about your clojure application state choosing an aws profile?
So I want to use named profiles to manage my credentials for different AWS accounts, but when I start cider I don't see an opportunity to set the AWS_PROFILE environment variable as described in the docs: export AWS_PROFILE=user1
the reference is https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-profiles.html
You'll have to do this without using environment variables - for example, the code I'm working on uses a config map to figure out how to connect to given AWS account and get credentials (ECS metadata, profile in ~/.aws/config
etc.
@U0JEFEZH6 so does your code explicitly read ~/.aws/config ?