You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by GitBox <gi...@apache.org> on 2017/12/16 17:18:42 UTC

[GitHub] merlimat commented on a change in pull request #920: Provide an Ansible playbook for AWS with documentation (WIP)

merlimat commented on a change in pull request #920: Provide an Ansible playbook for AWS with documentation (WIP)
URL: https://github.com/apache/incubator-pulsar/pull/920#discussion_r157346468
 
 

 ##########
 File path: ansible/provision-pulsar-aws.tf
 ##########
 @@ -0,0 +1,117 @@
+variable "public_key_path" {
+  description = <<DESCRIPTION
+Path to the SSH public key to be used for authentication.
+Ensure this keypair is added to your local SSH agent so provisioners can
+connect.
+
+Example: ~/.ssh/terraform.pub
+DESCRIPTION
+}
+
+variable "key_name" {
+  description = "Desired name of AWS key pair"
+}
+
+variable "region" {
+    default = "us-west-2"
+}
+
+variable "ami" {
+    default = "ami-9fa343e7" // RHEL-7.4
 
 Review comment:
   @afalko  Main reason for preferring RHEL is that the same Ansible deploy script can be reused without changes in different environments (Google cloud, on-prem, etc..). If we stick with Amazon Linux, we need to have 1 Ansible script for each environment.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services