Git Product home page Git Product logo

terraform_examples's Introduction

Terraform Examples

These are the missing Terraform AWS Windows examples. Other Terraform examples can be found here: https://github.com/terraform-aws-modules.

AWS Windows

aws-asg-chef

Shows how to use user_data to provision an ASG server instance with Chef.

The user_data script does the following:

  • downloads and install chef-client
  • downloads s3://mybucket/chef-validator.pem and s3://mybucket/encrypted_data_bag_secret
  • applies provisioning tag to instance
  • runs chef-client with provided runlist and environment && if successful will apply tags (Note that Name tag and Chef node/client names will be name appended with the instance id e.g. example-i-a1b2c3d4)
  • removes provisioning tag

Note that IAM must be setup to allow access to Chef server and s3. This example also expects Chef's chef-validator and encrypted_data_bag_secret to be downloadable from an S3 bucket. Be sure to change s3 paths accordingly.

aws-winrm-instance

Shows how to use user_data to configure WinRM, open firewall, and set the Administrator password for AWS Window 2012R2 Base image.

aws-ebs-mount

Shows how to use user_data to bring a persistent ebs volume (as D: drive) online.

choco-selenium-grid

Shows how to use chocolatey to install a selenium-grid on windows server.

hub

Shows how to use user_data and chocolatey to install and configure a selenium hub.

nodes

Shows how to use user_data and chocolatey to install and configure a selenium nodes at a higher screen resolution than 1024x768 default.

terraform_examples's People

Contributors

dhoer avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

terraform_examples's Issues

Mount throws: Cannot convert value "System.String" to type "System.Boolean".

The powershell fails on $false and $true with:

Set-Disk : Cannot process argument transformation on parameter 'IsOffline'. Cannot convert value "System.String" to
type "System.Boolean". Boolean parameters accept only Boolean values and numbers, such as $True, $False, 1 or 0.
At line:1 char:23
+ set-disk 3 -isOffline False
+                       ~~~~~
    + CategoryInfo          : InvalidData: (:) [Set-Disk], ParameterBindingArgumentTransformationException
    + FullyQualifiedErrorId : ParameterArgumentTransformationError,Set-Disk

selenium node get created but never connect to selenium hub

Steps to generate:

  1. Created a selenium hub. node with centos machines on aws with terraform

  2. Trying to create the windows instance with terraform mentioned in an example in choco-selenium-grid

  3. Modified the terraform script, just creating plan node with script mentioned in asg_user_data.tpl

data "template_file" "asg_user_data" {
  template = "asg_user_data.tpl"

  vars {
    hub_url = "${var.hub_url}"
    password = "${var.admin_password}"
  }
}

resource "aws_instance" "winrm" {
  # The connection block tells our provisioner how to
  # communicate with the resource (instance)
  connection {
    type     = "winrm"
    user     = "Administrator"
    password = "${var.admin_password}"

    # set from default of 5m to 10m to avoid winrm timeout
    timeout = "10m"
  }

  instance_type = "t2.micro"
  ami           = "${data.aws_ami.amazon_windows_2016.image_id}"

  # The name of our SSH keypair you've created and downloaded
  # from the AWS console.
  #
  # https://console.aws.amazon.com/ec2/v2/home?region=us-west-2#KeyPairs
  #
  key_name = "${var.key_name}"

  # Our Security group to allow WinRM access
  security_groups = ["selenium-grid-hub-sg"]

  # Note that terraform uses Go WinRM which doesn't support https at this time. If server is not on a private network,
  # recommend bootstraping Chef via user_data.  See asg_user_data.tpl for an example on how to do that.
  user_data = "${data.template_file.asg_user_data.rendered}"
}

can you please check and let us know is that example works ?

How to install IIS from powershell

Hi,

I have created an windows instance from a linux server and want to install IIS as part of it using terraform.

Could you please let me know what command i need to use

Regards,
Amrutha

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.