<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Secrets on make me: APe</title><link>https://apealive.net/tags/secrets/</link><description>Recent content in Secrets on make me: APe</description><generator>Hugo</generator><language>en-us</language><lastBuildDate>Sat, 21 Jan 2023 14:19:28 +0000</lastBuildDate><atom:link href="https://apealive.net/tags/secrets/index.xml" rel="self" type="application/rss+xml"/><item><title>Some Sugar from a DevOps Life: Secure File Syncing &amp; Cloud Secrets</title><link>https://apealive.net/snippets/some-sugar-from-devops-life/</link><pubDate>Sat, 21 Jan 2023 14:19:28 +0000</pubDate><guid>https://apealive.net/snippets/some-sugar-from-devops-life/</guid><description>&lt;p&gt;This is a curated collection of secure file synchronization, cloud infrastructure utilities, and secret management recipes compiled from my public GitHub Gists, representing some sweet shortcuts from a DevOps life.&lt;/p&gt;
&lt;hr&gt;
&lt;h2 id="-keyring-secrets-management-and-cli"&gt;🔑 keyring, secrets management and CLI&lt;a class="heading-anchor" href="#-keyring-secrets-management-and-cli" aria-hidden="true"&gt;#&lt;/a&gt;
&lt;/h2&gt;
&lt;p&gt;&lt;em&gt;Published: 2026-04-01T05:44:09Z | Original Link: &lt;a href="https://gist.github.com/epcim/479188c2a98468ed9c0187386a54e23a" target="_blank" rel="noopener noreferrer"&gt;Gist Link&lt;/a&gt;
&lt;/em&gt;&lt;/p&gt;
&lt;pre tabindex="0"&gt;&lt;code&gt;# gopass
EDITOR=vi gopass insert me/api/xyz_api_key
XYZ_API_KEY=&amp;#34;$(gopass -o me/api/xyz_api_key)&amp;#34;


# python
python -m keyring set XYZ_API_KEY &amp;lt;username&amp;gt;
python -m keyring get XYZ_API_KEY &amp;lt;username&amp;gt;


# MacOS
get_secret() {
 security find-generic-password -a &amp;#34;$USER&amp;#34; -s &amp;#34;$1&amp;#34; -w
}
export XYZ_API_KEY=$(get_secret XYZ_API_KEY)
&lt;/code&gt;&lt;/pre&gt;&lt;hr&gt;
&lt;h2 id="-gcrio-image-statistics"&gt;🔑 gcr.io image statistics&lt;a class="heading-anchor" href="#-gcrio-image-statistics" aria-hidden="true"&gt;#&lt;/a&gt;
&lt;/h2&gt;
&lt;p&gt;&lt;em&gt;Published: 2024-08-22T08:14:27Z | Original Link: &lt;a href="https://gist.github.com/epcim/dded1df6176ef162b693bffd08cc5ba3" target="_blank" rel="noopener noreferrer"&gt;Gist Link&lt;/a&gt;
&lt;/em&gt;&lt;/p&gt;</description></item></channel></rss>