Found 274 results

Search Tips:

To OR search terms: "terraform aws"

To AND search terms: "+terraform +aws"

To filter or reject search terms: "-aws"

Terraform Basics: Init, Plan, Apply, Destroy

July 23, 2022
We'll cover terraform basics. First, we'll cover how terraform evaluates the .tf files and naming conventions folks use in the real-world. We'll also core terraform commands: terraform init terraform plan terraform apply terraform destroy Terr...
9:14

Bitbucket CI Pipelines with Terraspace: 3 Different Example Pipelines

July 23, 2022
We'll show you how to setup Bitbucket CI Pipelines integration with Terraspace Cloud. We use Bitbucket Pipelines to set up CI with Terraspace. The workflow we used was: Pull Request: Shows previews of changes using terraspace plan Push or Bran...
17:18

GitLab CI Pipeline and Terraspace: 3 Different Example Pipelines

July 23, 2022
We'll cover how to set up Terraspace Cloud and GitLab CI. We use GitLab Pipelines to set up CI with Terraspace. The pipelines: Merge Request: Shows previews of changes using terraspace plan Push or Branch: Automatically updates the infrastruct...
17:06

Azure Pipelines CI with Terraspace

July 22, 2022
We'll cover how to set up Azure Pipelines CI with Terraspace. The pipelines: Branch Push Pipeline: Shows previews of changes using terraspace plan on TS_ENV=dev. Main Branch Pipeline: Automatically updates the infrastructure using terraspace up ...
22:41

GitHub Actions CI with Terraspace: 3 Different Example Workflows

July 22, 2022
We'll cover GitHub Actions CI integration with Terraspace Cloud. The workflows: Pull Request: Shows previews of changes using terraspace plan Push: Automatically updates the infrastructure using terraspace up on TS_ENV=dev Workflow Dispatch: We ...
20:56

Azure Pipelines with Pull Request Workflow and Approve Step (Advanced)

July 22, 2022
We'll cover how to set up more advanced Azure Pipelines: Pull Request Workflow: We'll use a Azure Branch Policy to trigger a terraspace plan on Pull Requests. You can fully restrict any git push to main and only permit PR changes or relax it a l...
18:32

Terraspace Cost Estimation: A Few Examples with $1,287/mo EC2 Example and Different EKS Clusters

July 22, 2022
We'll review the Terraspace Cost Estimation instructions and then do something fun. We'll see what some of the example modules from the Terraform Registry costs. The cost estimates 🤣 ec2: $8.39/mo complete ec2 example: $1,287/mo 😱 ecs-spot: $141...
12:31

CircleCI with Terraspace

July 21, 2022
We'll cover how to set up CircleCI with Terraspace Cloud. The workflows: Feature Branch Push: Shows previews of changes using terraspace plan on TS_ENV=dev. Main Branch Push: Automatically updates the infrastructure using terraspace up on TS_ENV...
20:41

Terraspace All Logging: Terraspace Cloud Saves Logs For Later Debugging

June 22, 2022
We'll show you how terraspace all logging is capture to the terraspace cloud dashboard. It's particularly using if you're using terraspace all in CI/CD.
5:33

Terraspace Cloud Permissions: Allow dev vs prod Access Control

June 14, 2022
We'll cover how the Terraspace Cloud Permissions system works. Docs: https://terraspace.cloud/docs/cloud/permissions/
10:00

Terraspace Cloud Intro and Setup

June 14, 2022
We'll give an introduction to Terraspace Cloud and set it up. We'll go over the website interface and see plans and updates. Docs: https://terraspace.cloud/docs/cloud/setup/
8:09

Azure Uniform vs Flexible Scale Sets: Uniform Are Hidden and Flexible Are Shown

June 13, 2022
Explains the differences between Azure Uniform and Flexible Scale Sets. Uniform Scale Sets: VMs are hidden and abstracted out away. You don't see them and cannot edit them directly. Flexible Scale Sets: VMs are first-class citizens and show up i...
2:30

Azure Resource Groups Intro: What They Are and How to Use Them

June 11, 2022
We'll cover what Azure Resource Groups are and how to use them. After using them here are some learnings and thoughts.
6:30

Kubes Central Deployer Pattern

February 6, 2022
We'll cover the Kubes Central Deployer Pattern. This is useful if your applications are similarly set up. You can use it as the "standard" kubernetes deployment for your company.
23:49

Azure MySQL Flexible vs Single Server Offerings: Flexible Basically Provides HA Option

February 4, 2022
We'll cover the difference between the Azure MySQL Flexible vs Single Server offerings. The Flexible Server is similar to AWS RDS Multi-AZ. So it provides a failover standby for High Availability, HA. Though it may remind AWS users of Aurora, it...
2:15

Terraspace Different Module Versions for Different Environments with Terrafile

January 27, 2022
Shows you how to use different module versions for different TS_ENV environments. This is helpful if you want to test a module version out on dev first before updating it on prod within the same git branch of your code. Links GitHub Repo: bolto...
12:24

Account Structure Hierarchies AWS vs Azure vs Google

January 27, 2022
We'll cover the different ways and names that cloud providers use to organize the account structure.
2:40

Terraspace Restricting Environments: Only Allow dev and prod

January 25, 2022
We'll cover how to restrict environments you want terraspace to be able to deploy to. Links Terraspace Docs: Restricting Envs GitHub Repo: boltops-learn/terraspace-restricting-envs
5:00

Terraspace Restricting AWS Regions: Only Allow us-west-2 and us-east-1

January 25, 2022
We'll show you how to restrict the AWS regions that are allowed to be deployed to with Terraspace. Note, this check is only at the Terraspace level. config/app.rb Terraspace.configure do |config| # .. config.allow.regions = ["us-west-2", "us...
8:25

Terraspace Allow and Deny Stacks Feature

January 24, 2022
Discuss about how the config.allow.stacks and config.deny.stacks was develop from a Terraspace community post. Related Links Terraspace Docs: Restricting Stacks Community Post: ENV specific stacks, or ignore
4:29

Terraspace Azure Armrest REST API Library

January 24, 2022
Talk about how the armrest library gem was written in order to handle the Azure Auth Chain. Environment Variables -> MSI -> CLI Related Links Terraspace Docs: Azure Auth Chain
7:12

Azure Cloud Shell Introduction

January 24, 2022
Quick demo of how to use the Azure Cloud Shell. It's useful for quick ops on the go. All you need is a web browser. Some useful az commands to help explore the Cloud Shell: az group list az group list -o table az vm list -o table az network vnet ...
2:09

AWS CloudShell Introduction

January 24, 2022
Will show a quick demo of the AWS Cloud Shell. It's a nice way to do things on the go when you don't have your computer on hand. All you need is a web browser. Some useful commands to help explore the Cloud Shell: aws s3 ls cat /etc/os-release
1:39

GCP Google Cloud Shell Introduction

January 24, 2022
Demo how to use Google Cloud Shell. It's a terminal in a browser :) It's a nice way to do things on the go when you don't have your computer on hand. All you need is a web browser. Some useful commands to help explore the Cloud Shell: gsutil ls ...
1:32

Terraspace All Exclude Stacks For Specific Environments: Only Deploy route53 for global env example

January 23, 2022
We'll cover how to include and exclude specific stacks for specific enviroments. We'll walk through the docs from the simplest to most complex example. Terraspace Docs: Terraspace All: Including and Excluding Stacks GitHub Repo: boltops-learn/te...
11:04

BoltOps Tools