VOOZH about

URL: https://thenewstack.io/3-essential-tips-for-adopting-devsecops/

⇱ 3 Essential Tips for Adopting DevSecOps - The New Stack


TNS
SUBSCRIBE
Join our community of software engineering leaders and aspirational developers. Always stay in-the-know by getting the most important news and exclusive content delivered fresh to your inbox to learn more about at-scale software development.
REQUIRED
It seems that you've previously unsubscribed from our newsletter in the past. Click the button below to open the re-subscribe form in a new tab. When you're done, simply close that tab and continue with this form to complete your subscription.
The New Stack does not sell your information or share it with unaffiliated third parties. By continuing, you agree to our Terms of Use and Privacy Policy.
Welcome and thank you for joining The New Stack community!
Please answer a few simple questions to help us deliver the news and resources you are interested in.
REQUIRED
REQUIRED
REQUIRED
REQUIRED
REQUIRED
Great to meet you!
Tell us a bit about your job so we can cover the topics you find most relevant.
REQUIRED
REQUIRED
REQUIRED
REQUIRED
REQUIRED
Welcome!

We’re so glad you’re here. You can expect all the best TNS content to arrive Monday through Friday to keep you on top of the news and at the top of your game.

What’s next?

Check your inbox for a confirmation email where you can adjust your preferences and even join additional groups.

Follow TNS on your favorite social media networks.

Become a TNS follower on LinkedIn.

Check out the latest featured and trending stories while you wait for your first TNS newsletter.

PREV
1 of 2
NEXT
VOXPOP
As a JavaScript developer, what non-React tools do you use most often?
Angular
0%
Astro
0%
Svelte
0%
Vue.js
0%
Other
0%
I only use React
0%
I don't use JavaScript
0%
Thanks for your opinion! Subscribe below to get the final results, published exclusively in our TNS Update newsletter:
NEW! Try Stackie AI
From clobbered drafts to real-time sync
Apr 14th 2026 10:00am, by David Moore
TypeScript 6.0 RC arrives as a bridge to a faster future
Mar 14th 2026 9:00am, by Darryl K. Taft
Mastra empowers web devs to build AI agents in TypeScript
Jan 28th 2026 11:00am, by Loraine Lawson
2022-12-07 07:15:45
3 Essential Tips for Adopting DevSecOps
sponsor-orca,sponsored-post-contributed,
Cloud Native Ecosystem / DevOps / Security

3 Essential Tips for Adopting DevSecOps

Implementing processes to make it less painful is key to integrating cloud security into DevOps. Automate as much as you can. Start small, then evolve.
Dec 7th, 2022 7:15am by Brena Monteiro
👁 Featued image for: 3 Essential Tips for Adopting DevSecOps
Image via Unsplash.
Orca sponsored this post.

Ensuring the security of an application is a constant and growing concern for development and infrastructure teams. The number of potential attacks and vulnerabilities in an application depends on many factors. The code, its dependencies and the application’s infrastructure all influence how secure it is. When a cloud application uses a microservice architecture, it will need more attention due to the added dependencies.

With that in mind, how do we reduce complexity to keep cloud applications more secure? In this article, we’ll explore DevSecOps, why it’s growing in organizations, and provide some tips for improving DevSecOps in practice.

What Is DevSecOps?

DevOps is more about culture than technology. Likewise, DevSecOps is related to cultural behavior when it comes to security concerns and operations. Combining development, security and operations, DevSecOps is a set of practices designed to standardize security operations across the entire process of developing and deploying applications.

Using automated processes to check for security flaws in the pipeline is an example of DevSecOps in practice. Another is including different types of tests as part of the release process. The important thing here is to include security checks at every step, not just at runtime. There’s a cultural element as well, requiring a mind shift among those building the application.

Agentless cloud security and compliance for AWS, Azure, Google Cloud, and Kubernetes – in a fraction of the time and operational costs of other solutions.
Learn More
The latest from Orca

Why Is DevOps Becoming a Major Focus in Cloud Security Management?

Security flaws are expensive. They can destroy a company or its reputation. In the age of data, each security flaw discovered by an attacker could spell disaster. So finding them as soon as possible is essential to preventing breaches and mitigating this type of risk.

Today we have tools that check for dependencies and provide a list of known vulnerabilities. With this, developers can ensure that everything is updated before they submit the code, so that they don’t add a new violation.

When it comes to infrastructure with containers, it is easy to replicate production in a pen-testing environment. You can automate the process of creating an environment and executing the tests in each build. Investing in DevSecOps is definitely cheaper than disaster recovery. So why not use it?

How Organizations Can Streamline the DevSecOps Process

Simply implementing DevSecOps is a big step toward preventing losses, and there are many different practices that can be used according to your context and needs. Some techniques, however, are common for any type of application. Below, we will discuss some basic techniques that you can put into practice to ease the daily work of your DevSecOps team.

Add Security Checks to the Pipeline

Build generation is the best time to include a scan that checks to see if new vulnerabilities have been added. This scan should check the entire application, not just the new code. Adding this check to the pipeline will force developers to update and patch vulnerabilities in order for the pipeline to run. There are four types of verification, and it’s a good idea to try to include them all:

  • Code — Use tools that perform static analysis based on a database of vulnerabilities to verify whether the code your team has created includes any security holes, such as insecure data manipulation, insecure use of signed values ​​or many others.
  • Dependencies — An application may use different libraries that contain vulnerabilities, so check them to avoid a breach in your application.
  • Images — Since everything is running in containers or images, it’s mandatory to scan them. That’s because each image can use many dependencies that you cannot check manually.
  • Runtime — You can also use security verification tools to verify your application at runtime. Some vulnerabilities can only be found when the application is running, and ignoring this fact can be dangerous.

Security Alert Monitoring

A good observability setup is not just for monitoring application health. It can also be helpful for identifying security issues. For example, a spike in an endpoint can be an attack. Therefore, you want to create intelligent alerts that combine information about access sources, failed access attempts, operating systems and databases.

Along with these alerts, you can add some predefined actions to prevent an attack from taking down your application. For example, try to figure out your app’s average usage and block or redirect access if you get an unexpected spike. But make sure that you’re on the same page with marketing and other departments so that you can properly prepare and change your limits when a spike is detected or predicted.

Log Access

For security reasons, developers should not be able to access logs in high environments. But this lock can make it difficult to investigate a security issue.

Therefore, the development team needs to work closely with DevOps and DevSecOps. If the application has a security issue, it’s likely that the fix will come through a code change. With that in mind, prepare the production logs so your developers can access them if needed. Anonymize secret values ​​and implement a temporary access policy that can be easily granted and quickly revoked.

If the logs can only be accessed through DevSecOps, it will take more time to identify and fix a security issue since the development team will need to request the logs many times to identify the problem. With a temporary access policy in place, they can get to work faster, and the DevSecOps team can focus on the investigation, rather than on providing logs to developers.

Conclusion: The Future of DevSecOps

Keeping your app and your cloud environment safe is continuous work. Many new vulnerabilities emerge every day, and this can be frustrating for everyone involved in the software development process. Implementing processes to make it less painful is the key to not giving up on security. Automate as much as you can. Start small, define a security policy and a simple flow to deploy it, then evolve. Always keep striving to improve security across your cloud estate with agile DevOps security tools and best practices.

Further Reading

Agentless cloud security and compliance for AWS, Azure, Google Cloud, and Kubernetes – in a fraction of the time and operational costs of other solutions.
Learn More
The latest from Orca
TRENDING STORIES
Brena Monteiro is a tech lead who is passionate about mentoring new developers. She has significant experience with hiring practitioners, providing guidance and leading development teams. Brena is also enthusiastic about leveraging cloud services to make architectural improvements and building...
Read more from Brena Monteiro
Orca sponsored this post.
SHARE THIS STORY
TRENDING STORIES
TNS owner Insight Partners is an investor in: Pragma, Simply.
SHARE THIS STORY
TRENDING STORIES
TNS DAILY NEWSLETTER Receive a free roundup of the most recent TNS articles in your inbox each day.
The New Stack does not sell your information or share it with unaffiliated third parties. By continuing, you agree to our Terms of Use and Privacy Policy.