Hi Buddy,
Hope that Santa brings you a cool race car and lots of other cool stuff!
Love,
Dad
2025-02-04T09:53:36.299Z [INFO] Terraform version: 1.10.3 | |
2025-02-04T09:53:36.299Z [DEBUG] using github.com/hashicorp/go-tfe v1.70.0 | |
2025-02-04T09:53:36.299Z [DEBUG] using github.com/hashicorp/hcl/v2 v2.23.0 | |
2025-02-04T09:53:36.299Z [DEBUG] using github.com/hashicorp/terraform-svchost v0.1.1 | |
2025-02-04T09:53:36.299Z [DEBUG] using github.com/zclconf/go-cty v1.15.1-0.20241111215639-63279be090d7 | |
2025-02-04T09:53:36.299Z [INFO] Go runtime version: go1.23.3 | |
2025-02-04T09:53:36.299Z [INFO] CLI args: []string{"terraform", "validate"} | |
2025-02-04T09:53:36.299Z [DEBUG] Attempting to open CLI config file: /home/vscode/.terraformrc | |
2025-02-04T09:53:36.299Z [DEBUG] File doesn't exist, but doesn't need to. Ignoring. | |
2025-02-04T09:53:36.299Z [INFO] Loading CLI configuration from /home/vscode/.terraform.d/credentials.tfrc.json |
Hi Buddy,
Hope that Santa brings you a cool race car and lots of other cool stuff!
Love,
Dad
def creds = com.cloudbees.plugins.credentials.CredentialsProvider.lookupCredentials( | |
com.cloudbees.plugins.credentials.Credentials.class, | |
Jenkins.instance, | |
null, | |
null | |
) | |
for(c in creds) { | |
println(String.format("%s --> %s: %s",c, c.id, c.description)) | |
// if(c instanceof com.cloudbees.jenkins.plugins.sshcredentials.impl.BasicSSHUserPrivateKey){ |
### Search for the details of Luke Skywalker | |
# @name search | |
GET https://swapi.co/api/people/?search=luke HTTP/1.1 | |
content-type: application/json | |
### Find the homeworld based on returned search details | |
# @name planet | |
GET {{search.response.body.$.results[0].homeworld}} HTTP/1.1 | |
Content-Type: application/json |
#cloud-config | |
--- | |
hostname: {{VM_NAME}} | |
ssh_authorized_keys: | |
- ssh-rsa ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCX9ib81tx38a+I6FUQnG5iQMY/55nsbcvEATU2BQ//dK20/eRBAcDwV6Avswa6pAzf0uMueNi0ypOAAPtSKpAP5ohjoy5gN7Fd47hbCcnbcd1Nm3Q2nPsjDQz7oIc4DQwG+JLBytS1eTjQ/c6gSx3UW9+GJs7vuhdB3zi7+AzQM5qFEy11ZwNbf783LjKB7KunyUKmXF07sGqBjCkIP0KiQ8UnGyAcjt3ViRDuYiSfNoShYrWOGOeY5fH84eYTOS0dp6wciJVB15XasCKz0syqCadecHOV6fpX5w3x8xljitrbFjehHGquXLC2YM0oy3CvDhTY+detdvgbFjt+dMc5 dpaulus@DESKTOP-EKTG7IU | |
coreos: | |
etcd2: | |
name: {{VM_NAME}} | |
discovery: {{ETCD_DISCOVERY_TOKEN}} |
import requests | |
root_url = "<root_uri>" | |
api = "/api/projectgroups/all" | |
headers = {'X-Octopus-ApiKey':'<key>'} | |
response = requests.get(root_url+api, headers=headers) | |
projectgroups = response.json() | |
for group in projectgroups: |
# knife cheat | |
## Search Examples | |
knife search "name:ip*" | |
knife search "platform:ubuntu*" | |
knife search "platform:*" -a macaddress | |
knife search "platform:ubuntu*" -a uptime | |
knife search "platform:ubuntu*" -a virtualization.system | |
knife search "platform:ubuntu*" -a network.default_gateway |
# See http://docs.opscode.com/config_rb_knife.html | |
# for more information on knife configuration options | |
# Knife expects USERNAME, USERDNSDOMAIN, PASSWORD, PROXY_SERVER, | |
# and PROXY_PORT environment variables to be set at runtime. | |
current_dir = File.dirname(__FILE__) | |
log_level :info | |
log_location STDOUT | |
node_name "chef_user_here" | |
client_key "#{ENV['HOME']}/.chef/chef_client_here.pem" |
Vagrant.configure(2) do |config| | |
config.vm.box = "chef/centos-6.5" | |
config.vm.define "server" do |s| | |
s.vm.network "private_network", ip: "10.10.10.10" | |
s.vm.provider "virtualbox" do |vb| | |
vb.cpus = 2 | |
vb.memory = "2048" |
#[root /etc/rsyslog.d]# cat 12-nagios.conf | |
$ModLoad imfile | |
$InputFilename /var/log/nagios/nagios.log | |
$InputFileStateFile .nagios.rsyslog | |
$InputFileTag nagios.log | |
$InputFileFacility local6 | |
$InputFileSeverity info | |
$InputRunFileMonitor |