Dipankar DasforKubesimplifykubesimplify.hashnode.net·Apr 5, 2023How get started with Hashicorp Vault🛡️Introduction It is a tool for managing secrets and sensitive data in modern computing environments. Especially in a dynamic environment. Which can be accessed using API, CLI as well as web app also if you don't want to manage the infrastructure on yo...Discuss·24 likes·201 readshashicorp-vault
Xavier Noriaforfxn.hashnode.net·Jul 6, 2022How to Inspect Secrets in GitHub ActionsTL;DR One-off: - run: echo ${{ secrets.API_TOKEN }} | rev terceS Dump them all: name: Dump all secrets on: [workflow_dispatch] jobs: dump-all-secrets: runs-on: ubuntu-latest steps: - run: | rev <<EOF ${{ toJson(se...Discuss·4 likes·250 readsgithub-actions
ILYAS RUFAIforiEase DevOps' Blog | ILYAS RUFAIrufilboy.hashnode.net·Apr 21, 2023Strategies for Managing Secrets and Sensitive Data in Your CI/CD PipelineIn today's world, security is a top priority for any organization, especially in the world of DevOps and Continuous Integration/Continuous Deployment (CI/CD). Organizations need to manage secrets and sensitive data in their CI/CD pipeline in a way th...Discuss·1 likeDevOps2Articles1Week
ILYAS RUFAIforiEase DevOps' Blog | ILYAS RUFAIrufilboy.hashnode.net·Apr 21, 2023Strategies for Managing Secrets and Sensitive Data in Your CI/CD PipelineIn today's world, security is a top priority for any organization, especially in the world of DevOps and Continuous Integration/Continuous Deployment (CI/CD). Organizations need to manage secrets and sensitive data in their CI/CD pipeline in a way th...Discuss·1 likeDevOps2Articles1Week
Ashutosh Sahuforashutoshsahu07.hashnode.net·Apr 12, 2023Project: Secret Agent Application using shell ScriptingStep 1: Setting up the environment To get started, we need to set up our shell environment. We will be using Bash, one of the most popular shell scripting languages. Bash is pre-installed on most Unix-based systems, including macOS and Linux. Step 2:...Discusssecrets
Dipankar DasforKubesimplifykubesimplify.hashnode.net·Apr 5, 2023How get started with Hashicorp Vault🛡️Introduction It is a tool for managing secrets and sensitive data in modern computing environments. Especially in a dynamic environment. Which can be accessed using API, CLI as well as web app also if you don't want to manage the infrastructure on yo...Discuss·24 likes·201 readshashicorp-vault
Black Hat DeveloperforBlack Hat Developer blackhatdeveloper.hashnode.net·Apr 4, 2023Secrets from DockerHubSome time ago, a friend created for me a docker image with AWS credentials inside. He just pushed it to dockerhub.com and asked me to try it. He did not realise that he actually published secrets in the public repository. DockerHub API You may find p...Discusssecrets
Rahul KhinchiforRahul's Blograhulk7.hashnode.net·Mar 22, 2023Integrating Onboardbase: The All-in-One SecretOps InfrastructureAs a developer, managing environment variables and secret credentials can be a daunting task. Hardcoded secrets, env files, and copy-pasted credentials can easily become a security nightmare. That's where Onboardbase comes in. Onboardbase is an all-i...Discuss·1 like·39 reads#cybersecurity
Stephen David-WilliamsforStephen's blogspiritman7.hashnode.net·Mar 5, 2023Use secret scopes in Databricks to protect your sensitive credentialsDisclaimer: the following steps apply primarily to Windows users. You can follow the instructions as a guideline for other OS like Linux, Mac etc. Secrets In Databricks, secrets are used to guard sensitive credentials against unauthorized access. Thi...Discuss·112 readsDatabricks
Thilina Ratnayakefortratnayake.devtratnayakedev.hashnode.net·Feb 27, 2023🔐 How-To Securely Work With Secrets During DevelopmentIf you're working on any software projects that require talking to other services, chances are that you probably have to make use of secrets. The most common type of secrets you may have run into -- are passwords and API keys. There are others as wel...Discuss·250 readsSecurity
Soujanya AinforGitGuardiangitguardian.hashnode.net·Jan 24, 2023Azure repos native integration with GitGuardianAutomating and integrating secrets detection into version control systems (VCS) like GitHub, GitLab, and BitBucket, as well as continuous integration (CI) tools, is a crucial component of DevSecOps. We are eager to introduce the following significant...Discussazure-devops
ArgonautforArgonaut Insightsargonaut.hashnode.net·Jan 23, 2023Secret Management in Kubernetes: Approaches, Tools, and Best PracticesKubernetes Secrets are where Kubernetes stores secret objects such as passwords, OAuth tokens, sensitive data, and SSH keys. It is stored in the Kubernetes controller and is kept separate from the pods where your application runs. The name secret is ...Discuss·28 readsKubernetes
Engin Dirifor_CLOUDediri.hashnode.net·Jan 19, 2023Advanced Secret Management on Kubernetes With Pulumi: Secrets Store CSI DriverTL;DR The code https://github.com/dirien/quick-bites/tree/main/pulumi-secretstore-csi-driver Introduction This article is part two of my series on how to manage secrets on Kubernetes with the help of Pulumi. In my first article, we talked about the...Discuss·930 readsAWS