Skip to content

Instantly share code, notes, and snippets.

View jhanley-com's full-sized avatar

John J. Hanley jhanley-com

View GitHub Profile
@set APIKEY=your_cloud_api_key
@set URI=https://clients.hostwinds.com/cloud/api.php
@set FILENAME=instances.json
@if exist %FILENAME% del %FILENAME%
@curl %URI% ^
-sS ^
-X POST ^
-d "action=get_instances&API=%APIKEY%" > %FILENAME%
APIKEY='your_cloud_api_key'
URI='https://clients.hostwinds.com/cloud/api.php'
FILENAME='instances.json'
if [ -f $FILENAME ];
then
rm $FILENAME
fi
curl $URI \
@jhanley-com
jhanley-com / main.tf
Last active January 6, 2021 02:56
Terraform Azure Service Principal - Part 2
# Test code for the question: https://stackoverflow.com/q/65525116/8016720
# Provides configuration details for Terraform
terraform {
required_version = ">= 0.14.3, < 0.15.0"
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "~>2.41"
@jhanley-com
jhanley-com / tclean.bat
Created March 7, 2021 22:49
Windows batch script to cleanup a Terraform project
IF exist .terraform (rd /s /q .terraform)
IF exist terraform.tfstate.d (rd /s /q terraform.tfstate.d)
IF exist .terraform.lock.hcl (del .terraform.lock.hcl)
IF exist terraform.tfstate (del terraform.tfstate)
IF exist terraform.tfstate.backup (del terraform.tfstate.backup)
# This script is used in my article about Terraform, Google Cloud DNS and Cloud IAM.
# https://www.jhanley.com/terraform-experiments-with-google-cloud-dns-and-iam/
######################################################################
# Terraform
######################################################################
terraform {
required_version = ">= 0.14.7"
}
@jhanley-com
jhanley-com / simple_gist.txt
Created June 15, 2021 05:14
Simple GitHub Gist
This is a simple GitHub Gist.
This is line 2.
@jhanley-com
jhanley-com / is_object_public.py
Created August 10, 2021 10:12
The following example first processes a bucket. If uniform access is not enabled then the object is processed. If public access enabled on the bucket or the object, the object is Public. Refer to https://stackoverflow.com/questions/68722565/how-to-check-if-a-file-in-gcp-storage-is-public-or-not
import sys
from google.cloud import storage
# Replace with valid bucket and object names
bucket_name = 'example_bucket_name'
object_name = 'example_object_name'
# Instantiates a client
storage_client = storage.Client()
@jhanley-com
jhanley-com / main.tf
Last active September 20, 2021 21:12
Terraform files for my article, Azure - Lock a VM to Prevent Deletion: https://www.jhanley.com/azure-lock-a-vm-to-prevent-deletion/
##############################################################################
# Date Created: 2021-09-17
# Last Update: 2021-09-17
# https://www.jhanley.com - Google Cloud
# Copyright (c) 2021, John J. Hanley
# Author: John J. Hanley
# License: MIT
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@jhanley-com
jhanley-com / .gitignore
Last active September 22, 2021 03:12
Laravel .gitignore file
/node_modules
/public/blog
/public/hot
/public/storage
/storage/*.key
/vendor
.env
.env.backup
.phpunit.result.cache
docker-compose.override.yml
@jhanley-com
jhanley-com / composer.json
Created October 1, 2021 02:39
This program prints the Microsoft JSON Web Key Set (JWKS) certificate and public keys. Also demonstrated is two methods to create a public key from the information provided by the JWKS data. For details see my article on Azure Open ID Connect JSON Web Key Set - http://www.jhanley.com/azure-openid-connect-json-web-key-set
{
"require": {
"phpseclib/phpseclib": "^2.0",
}
}