@@ -6,7 +6,6 @@ Included features:
66* Automatically create a Security Group
77* Option to switch EIP attachment
88* CloudWatch monitoring and automatic reboot if instance hangs
9- * [ Github Authorized Keys] ( https://github.com/cloudposse/terraform-template-user-data-github-authorized-keys )
109* Assume Role capability
1110
1211## Usage
@@ -37,9 +36,6 @@ module "instance" {
3736module "kafka_instance" {
3837 source = "git::https://github.com/cloudposse/terraform-aws-ec2-instance.git?ref=master"
3938 ssh_key_pair = "${var.ssh_key_pair}"
40- github_api_token = "${var.github_api_token}"
41- github_organization = "${var.github_organization}"
42- github_team = "${var.github_team}"
4339 vpc_id = "${var.vpc_id}"
4440 security_groups = ["${var.security_groups}"]
4541 subnet = "${var.subnet}"
@@ -56,7 +52,6 @@ module "kafka_instance" {
5652This module depends on these modules:
5753
5854* [ terraform-null-label] ( https://github.com/cloudposse/terraform-null-label )
59- * [ terraform-template-user-data-github-authorized-keys] ( https://github.com/cloudposse/terraform-template-user-data-github-authorized-keys )
6055
6156It is necessary to run ` terraform get ` to download those modules.
6257
@@ -81,9 +76,6 @@ resource "aws_ami_from_instance" "example" {
8176| ` instance_enabled ` | ` true ` | Flag for creating an instance. Set to false if it is necessary to skip instance creation | No |
8277| ` create_default_security_group ` | ` true ` | Flag for creation default Security Group with Egress traffic allowed only | No |
8378| ` ssh_key_pair ` | `` | SSH key pair to be provisioned on instance | Yes |
84- | ` github_api_token ` | `` | GitHub API token | No |
85- | ` github_organization ` | `` | GitHub organization name | No |
86- | ` github_team ` | `` | GitHub team | No |
8779| ` instance_type ` | ` t2.micro ` | The type of the creating instance (e.g. ` t2.micro ` ) | No |
8880| ` vpc_id ` | `` | The ID of the VPC that the creating instance security group belongs to | Yes |
8981| ` security_groups ` | ` [] ` | List of Security Group IDs allowed to connect to creating instance | Yes |
0 commit comments