@@ -6,7 +6,6 @@ Included features:
6
6
* Automatically create a Security Group
7
7
* Option to switch EIP attachment
8
8
* CloudWatch monitoring and automatic reboot if instance hangs
9
- * [ Github Authorized Keys] ( https://github.com/cloudposse/terraform-template-user-data-github-authorized-keys )
10
9
* Assume Role capability
11
10
12
11
## Usage
@@ -37,9 +36,6 @@ module "instance" {
37
36
module "kafka_instance" {
38
37
source = "git::https://github.com/cloudposse/terraform-aws-ec2-instance.git?ref=master"
39
38
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}"
43
39
vpc_id = "${var.vpc_id}"
44
40
security_groups = ["${var.security_groups}"]
45
41
subnet = "${var.subnet}"
@@ -56,7 +52,6 @@ module "kafka_instance" {
56
52
This module depends on these modules:
57
53
58
54
* [ 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 )
60
55
61
56
It is necessary to run ` terraform get ` to download those modules.
62
57
@@ -81,9 +76,6 @@ resource "aws_ami_from_instance" "example" {
81
76
| ` instance_enabled ` | ` true ` | Flag for creating an instance. Set to false if it is necessary to skip instance creation | No |
82
77
| ` create_default_security_group ` | ` true ` | Flag for creation default Security Group with Egress traffic allowed only | No |
83
78
| ` 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 |
87
79
| ` instance_type ` | ` t2.micro ` | The type of the creating instance (e.g. ` t2.micro ` ) | No |
88
80
| ` vpc_id ` | `` | The ID of the VPC that the creating instance security group belongs to | Yes |
89
81
| ` security_groups ` | ` [] ` | List of Security Group IDs allowed to connect to creating instance | Yes |
0 commit comments