Guest User

Untitled

a guest
Feb 15th, 2019
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. variable "ssh_private_key" {
  2. default = "Linux-Frankfurt.pem"
  3. description = "Private key for Frankfurt region"
  4. }
  5.  
  6. variable "server_instance_type" {
  7. default = "t2.micro"
  8. description = "Instance type"
  9. }
  10.  
  11. variable "access_key" {
  12. default = "YOUR_IAM_ACCESS_KEY_HERE"
  13. description = "IAM Access Key"
  14. }
  15.  
  16. variable "secret_key" {
  17. default = "YOUR_IAM_SECRET_KEY_HERE"
  18. description = "IAM Secret Key"
  19. }
  20.  
  21. variable "latest_redhat" {
  22. default = "ami-c86c3f23"
  23. description = "Latest Redhat AMI"
  24. }
  25.  
  26. variable "region" {
  27. default = "eu-central-1"
  28. description = "AWS Region"
  29. }
Add Comment
Please, Sign In to add comment