I hereby claim:
- I am jacobbednarz on github.
- I am jacobbednarz (https://keybase.io/jacobbednarz) on keybase.
- I have a public key whose fingerprint is CBBB 1C47 F33B B260 2A95 E27A F2E3 5169 6395 DFBD
To claim this, I am signing this object:
2024-03-20T08:18:57.264+1100 [INFO] Terraform version: 1.7.5 | |
2024-03-20T08:18:57.264+1100 [DEBUG] using github.com/hashicorp/go-tfe v1.41.0 | |
2024-03-20T08:18:57.264+1100 [DEBUG] using github.com/hashicorp/hcl/v2 v2.19.1 | |
2024-03-20T08:18:57.264+1100 [DEBUG] using github.com/hashicorp/terraform-svchost v0.1.1 | |
2024-03-20T08:18:57.264+1100 [DEBUG] using github.com/zclconf/go-cty v1.14.1 | |
2024-03-20T08:18:57.264+1100 [INFO] Go runtime version: go1.21.8 | |
2024-03-20T08:18:57.264+1100 [INFO] CLI args: []string{"/Users/jacob/.asdf/installs/terraform/1.7.5/bin/terraform", "apply", "-auto-approve"} | |
2024-03-20T08:18:57.264+1100 [TRACE] Stdout is not a terminal | |
2024-03-20T08:18:57.264+1100 [TRACE] Stderr is a terminal of width 283 | |
2024-03-20T08:18:57.264+1100 [TRACE] Stdin is a terminal |
2024-03-19T15:44:40.333+1100 [INFO] Terraform version: 1.7.5 | |
2024-03-19T15:44:40.333+1100 [DEBUG] using github.com/hashicorp/go-tfe v1.41.0 | |
2024-03-19T15:44:40.333+1100 [DEBUG] using github.com/hashicorp/hcl/v2 v2.19.1 | |
2024-03-19T15:44:40.333+1100 [DEBUG] using github.com/hashicorp/terraform-svchost v0.1.1 | |
2024-03-19T15:44:40.333+1100 [DEBUG] using github.com/zclconf/go-cty v1.14.1 | |
2024-03-19T15:44:40.333+1100 [INFO] Go runtime version: go1.21.8 | |
2024-03-19T15:44:40.333+1100 [INFO] CLI args: []string{"/Users/jacob/.asdf/installs/terraform/1.7.5/bin/terraform", "apply", "-auto-approve"} | |
2024-03-19T15:44:40.333+1100 [DEBUG] Attempting to open CLI config file: /Users/jacob/.terraformrc | |
2024-03-19T15:44:40.333+1100 [DEBUG] File doesn't exist, but doesn't need to. Ignoring. | |
2024-03-19T15:44:40.333+1100 [DEBUG] ignoring non-existing provider search directory terraform.d/plugins |
ᐅ TF_LOG=DEBUG terraform apply | |
2021-12-27T11:15:24.564-0600 [INFO] Terraform version: 1.1.2 | |
2021-12-27T11:15:24.565-0600 [INFO] Go runtime version: go1.17.2 | |
2021-12-27T11:15:24.565-0600 [INFO] CLI args: []string{"terraform", "apply"} | |
2021-12-27T11:15:24.565-0600 [DEBUG] Attempting to open CLI config file: /Users/yen/.terraformrc | |
2021-12-27T11:15:24.565-0600 [DEBUG] File doesn't exist, but doesn't need to. Ignoring. | |
2021-12-27T11:15:24.565-0600 [DEBUG] ignoring non-existing provider search directory terraform.d/plugins | |
2021-12-27T11:15:24.565-0600 [DEBUG] ignoring non-existing provider search directory /Users/yen/.terraform.d/plugins | |
2021-12-27T11:15:24.565-0600 [DEBUG] ignoring non-existing provider search directory /Users/yen/Library/Application Support/io.terraform/plugins | |
2021-12-27T11:15:24.565-0600 [DEBUG] ignoring non-existing provider search directory /Library/Application Support/io.terraform/plugins |
# Cloudflare Access Service tokens example. | |
# | |
# This is a code sample for using Cloudflare Access using service | |
# tokens. To execute this sample, you'll need to setup a new service | |
# token (client ID and client secret) as well as an Access Policy that | |
# allows the non-identity to access the resource. For assistance setting | |
# up the Cloudflare Access Service Token and the Access Policy, please | |
# refer to the documentation linked below. | |
# | |
# Prerequisites: |
#!/usr/bin/sudo ruby | |
# | |
# revealer.rb -- Deobfuscate GHE .rb files. | |
# | |
# This is simple: | |
# Every obfuscated file in the GHE VM contains the following code: | |
# | |
# > require "ruby_concealer.so" | |
# > __ruby_concealer__ "..." |
total 120 | |
drwxr-xr-x 13 Jacob staff 442 17 Nov 14:42 . | |
drwxr-xr-x 9 Jacob staff 306 17 Nov 14:42 .. | |
-rw-r--r-- 1 Jacob staff 171 17 Nov 14:42 cloudinary.yml | |
-rw-r--r-- 1 Jacob staff 580 17 Nov 14:42 database.yml | |
-rw-r--r-- 1 Jacob staff 381 17 Nov 14:42 database_migrations.yml | |
drwxr-xr-x 10 Jacob staff 340 17 Nov 14:42 google-api-private-keys | |
-rw-r--r-- 1 Jacob staff 1835 17 Nov 14:42 paypal-api-certificate.live.pem | |
-rw-r--r-- 1 Jacob staff 874 17 Nov 14:42 paypal.production.yml | |
-rw-r--r-- 1 Jacob staff 271 17 Nov 14:42 redis.yml |
I hereby claim:
To claim this, I am signing this object:
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
Vagrant.configure("2") do |config| | |
# All Vagrant configuration is done here. The most common configuration | |
# options are documented and commented below. For a complete reference, | |
# please see the online documentation at vagrantup.com. | |
# Every Vagrant virtual environment requires a box to build off of. | |
config.vm.box = "YOUR CUSTOM BOX NAME HERE" |
#!/usr/bin/env bash | |
# | |
# Generate a random mac address, the old fashioned way. | |
# Ensure we are running as root. | |
if [ "$(id -u)" != "0" ]; then | |
echo "This script must be run as root." 2>&1 | |
exit 1 | |
fi |
0.00011992454528809 | |
0.0055930614471436 | |
6.7949295043945E-5 | |
9.2029571533203E-5 | |
0.00070881843566895 | |
0.00023818016052246 | |
0.00063109397888184 | |
0.0012919902801514 | |
0.00021719932556152 | |
0.00012302398681641 |