User Tools

Site Tools


start_a_new_script

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Next revisionBoth sides next revision
start_a_new_script [2017/08/04 20:14] walkeradminstart_a_new_script [2017/08/04 20:52] walkeradmin
Line 17: Line 17:
   - Create a new file in your preferred text editor and save it as "my_instance.tf"   - Create a new file in your preferred text editor and save it as "my_instance.tf"
 \\  \\ 
 +{{ :cmd_terraform_001.jpg?500 |}}
 \\  \\ 
 +\\ 
 +\\ 
 +Paste the following text in to your "my_instance.tf" file and save it.
 +\\ 
 +\\ 
 +<sxh>
 +provider "aws" {
 +        access_key = "XXXXXXXXXXXXXXXX"
 +        secret_key = "XXXXXXXXXXXXXXXXXXXXXX"
 +        region = "xxxxxxxx"
 +}
  
 +resource "aws_instance" "simple_example" {
 +        ami = "ami-xxxxxxxx"
 +        instance_type = "xxxxxxxx"
 +        key_name = "xxxxxxxx"
 +        security_groups= ["xxxxxxxx"]
 +        tags {
 +         Name = "terraform-instance"
 +        }
 +}
 +</sxh>
 +\\ 
 +As you go through each section of this guide, enter the relevant details in this script and save it each time. At the end of the guide you will have a finished script that you can test.
 +\\ 
 +\\ 
start_a_new_script.txt · Last modified: 2023/03/09 22:35 by 127.0.0.1