Create and Configure Google Cloud Instance using Terraform and Chef

This page summarizes the projects mentioned and recommended in the original post on dev.to

Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
  • cookbooks

    Chef cookbooks repo

  • #!/bin/bash mkdir -p /data/chef_cookbooks rm -rf /data/chef_cookbooks/* outfile='/var/log/userdata.out' # Install Chef client v14 if [ ! -f /usr/bin/chef-client ] ; then echo "Installing chef client" >> $outfile curl -L https://omnitruck.chef.io/install.sh | sudo bash -s -- -v 15.8.23 >> $outfile fi # Install git if [ ! -f /usr/bin/git ] ; then yum install git -y >> $outfile fi # Clone Chef cookbook repo cd /data/chef_cookbooks echo "Cookbook Repo cloning" >> $outfile git clone https://github.com/chefgs/cookbooks.git >> $outfile echo "Executing chef-client" >> $outfile cd /data/chef_cookbooks sudo chef-client -z -o apache --chef-license accept >> /var/log/chefrun.out ## if [ -d /var/www/html/ ] ; then echo "Apache server created successfully, hence create sample html site" >> $outfile cat <<'EOF' >> /var/www/html/index.html Apache server in Google Cloud Created using metadata startup script from a local script file. EOF fi

  • terraform_repo

    Terraform samples for Major Cloud Providers and Custom Provider Development

  • The code has been freely available in GitHub

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

    InfluxDB logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts