aws_playground

- experiments in aws with terraform
git clone git://git.acid.vegas/aws_playground.git
Log | Files | Refs | Archive | README

variables.tf (658B)

      1 variable "aws_region" {
      2   description = "The AWS region in which resources will be created."
      3   type        = string
      4 }
      5 
      6 variable "aws_security_group" {
      7   description = "The ID of the security group."
      8   type        = string
      9 }
     10 
     11 variable "aws_instance_type" {
     12   description = "The type of EC2 instance to create."
     13   type        = string
     14 }
     15 
     16 variable "aws_key_pair_name" {
     17   description = "The name of the AWS key pair."
     18   type        = string
     19 }
     20 
     21 variable "aws_user_data_file_path" {
     22   description = "Path to the user data script."
     23   type        = string
     24 }
     25 
     26 variable "aws_instance_count" {
     27   description = "Number of instances to create."
     28   type        = number
     29 }