Found 274 results

Search Tips:

To OR search terms: "terraform aws"

To AND search terms: "+terraform +aws"

To filter or reject search terms: "-aws"

Terraspace Restricting Allowed Stacks for Specific Environments: Only Allow route53 to deploy Example

January 23, 2022
Covers how to allow and deny specific stacks for specific environments. Good examples are route53 and ACM certs for CloudFront. For the example, let's say you have these stacks: $ terraspace list app/stacks/route53 app/stacks/stack1 app/stacks/st...
14:13

AWS Cloud9 IDE Editor Demo and Why I Currently Use It

January 13, 2022
Will cover the reasons why am using Cloud9 as my current IDE. Will also provide a demo of how to create a Cloud9 machine, going through and showing the resources AWS that launches. Pros: Internet Speed: This is the number one reason why I used ...
12:28

Terraspace Tfvars Complex Types Transforming Data to Needed Structure Before Terraform Apply

January 9, 2022
When wiring terraform outputs to inputs between modules, sometimes the data structure is not exactly what you need. We'll show how to transform data structures in different ways. This can help you to reuse modules from the Terraform registry witho...
13:26

Gcloud Config Configurations CLI Command

January 9, 2022
We'll cover the gcloud config configurations command. It can be used to switch between google projects quickly. Gcloud Config Cheatsheet List gcloud config configurations list Create dev configuration gcloud config configurations create dev gcl...
5:03

Getting Started Guide

January 9, 2022
We'll go through the Terraspace Getting Started Guide without a Cloud. This is useful if you're onprem. Links: Terraspace Docs: Non-Cloud Getting Started Guide
8:58

Terraspace Getting Started with Google Cloud

January 9, 2022
We'll go through the Getting Started guide with Google Cloud. We’ll go through the Getting Started guide with Google Cloud. We'll create a GCS bucket and delete it with Terraspace and Terraform. Links: Terraspace Docs: Google Cloud Getting Star...
9:50

Terraspace Getting Started with Azure Cloud

January 9, 2022
We'll go through the Getting Started guide with Azure Cloud. It we'll create an Azure storage account, update it, and destroy it. Links: Terraspace Docs: Azure Cloud Getting Started
12:26

Terraspace Getting Started with AWS

January 9, 2022
We’ll go through the Terraspace Getting Started guide with AWS. We'll generate a new Terraspace project with an s3 bucket example. Deploy it, updated it, and learn how Terraspace works. Links: Terraspace Docs: AWS Getting Started
11:55

Terraspace v1 Release

January 8, 2022
Terraspace v1 has been released. I'll cover the Terraspace v1 release highlights. Talk about how the new features work. Will also lightly cover some of the hoops that had jumped through to implement them. 🤣 Highlights Non-cloud provider suppo...
7:41

EKS: Self-Managed Nodes vs Managed Node Group vs AWS Fargate

January 6, 2022
We'll cover the different EKS Nodes and what they mean. Essentially, EKS manages Kubernetes-as-a-Service but this mainly means the Kubernetes control plane. You still need to provide compute nodes to your EKS cluster so they have the capacity to ...
4:12

Terraspace Azure Plugin Data Protection and Security Features

January 5, 2022
Covers a feature request, implementation, and release of a feature for the terraspace_plugin_azurerm. Namely for the Azure Storage Account that Terraspace creates as part of the azurerm backend: Azure Storage Account Data Protection by enabling ...
5:13

AWS Configuring the CLI Credentials: Setup .aws/config Instructions

January 4, 2022
We'll show you how to configure the AWS CLI credentials. We'll create actual IAM users and set them up as named profiles in the ~/.aws/credentials and ~/.aws/config files. Links: Configuration settings and precedence Named profiles for the AWS ...
8:22

GitLab Backend

January 4, 2022
We'll show you how to configure Terraspace to use the GitLab http backend. Links: Terraspace Docs: Backend GitLab GitHub: terraspace-gitlab-backend GitLab: tongueroo/terraspace-gitlab-backend-demo
7:27

Terraspace Secrets with AWS: Don’t Commit Secrets into Git, Instead Use SSM and Secrets Manager

January 4, 2022
Committing secrets into your source version control is not a good practice. We'll show you how to use AWS SecretsManager and SSM Parameter Store to store and use secrets safely instead. Commands In the video, to focus on learning, we mainly use ...
7:57
free lesson

Terraspace Azure Key Vault Secrets: How to Setup and Use

January 4, 2022
We'll show you how to use Azure Key Vault Secrets with Terraspace. This allows you to not store any secret information like passwords in your Terraform source code. Commands In the video, to focus on learning, we mainly use the Azure Portal Cons...
11:18

Terraspace Google Secret Manager: Don’t Commit Secrets to Git, Instead Use Secrets Manager

January 4, 2022
Show you how to use Google Secret Manager with Terraspace. This allows to you to not have any secret information like passwords in your Terraform source code. CLI Commands In the video, we mainly focused on learning and using the Google Console....
6:33

Different Ways to Launch AWS EC2 Spot Instances

December 25, 2021
We'll provide a high-level overview of the different ways to launch AWS EC2 spot instances. We'll talk about their different complexity levels and age in existence. The 3 different ways: EC2 Instances Spot Fleets AutoScaling Groups The recomme...
2:52

Docker Compose with Django

December 25, 2021
We'll build a Django project from scratch and get it working locally first. Then we'll Dockerize and get it working with docker-compose.yml. Found this is more useful and the typical steps folks take to setting up Docker Compose. Docker Compose ...
26:29

Docker Compose with Rails

December 25, 2021
We'll show you how to set up Docker Compose with Rails. We'll take a very practical approach by starting from scratch. We'll build a simple Rails app, get it working locally, and then get it working with docker compose. We'll configure things so t...
22:35

Docker Run vs Start Commands

December 24, 2021
We'll cover the difference between the docker run and docker start commands. You'll mostly use the docker run command when working with docker. Note: Unless you're working with docker-compose, then it's a lot more common to use the start commands.
3:07

Docker Use Another User Aside From root

December 24, 2021
We'll show you how to use another user in your docker container aside from root. Though this is considered a best practice, can understand why most just stick to the root user. Because it's an additional step you must take. Will show you those st...
2:33

Docker Favorite Debugging Tip loop.sh

December 21, 2021
We'll show you one of my favorite Docker debugging tips. It's especially helpful when you're trying to get the docker running for the first time on Kubernetes or ECS. Note: You can also run "sleep infinity" CMD ["sleep", "infinity"] Links: bo...
10:37

Docker Volumes Tutorial: How They Work

December 21, 2021
We'll show you how Docker volumes work. They allow you to mount a directory from your machine to the docker container. This is cool because any changes to files you make on your machine get immediately reflected within the docker container. We'll ...
9:04

Docker Networks Tutorial: How They Work

December 21, 2021
We'll cover Docker networks and show you how they work. Generally, you won't have to deal too much with Docker networks as they get handled by the orchestration software, IE: Kubernetes and ECS. We'll cover them anyway so you can understand how th...
6:24

Docker inspect Command Tutorial

December 21, 2021
We'll cover the docker inspect command. It's a useful command to figure out information about the running docker container, especially if you don't have the Dockerfile used to the build the Docker image handy. Commands: docker run --rm -P -d bolt...
2:51
free lesson

BoltOps Tools