You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Use `owners` with `data.aws_ami.info`
The latest `terraform-aws-provider` appears to require this, so let's
humor it, and either supply it in case we're using the default AMI, or
allow the user to provide it.
* Update docs/README
* ...aand appease `terraform fmt`
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -102,22 +102,22 @@ Available targets:
102
102
lint Lint terraform code
103
103
104
104
```
105
-
106
105
## Inputs
107
106
108
107
| Name | Description | Type | Default | Required |
109
108
|------|-------------|:----:|:-----:|:-----:|
110
109
| additional_ips_count | Count of additional EIPs | string |`0`| no |
111
110
| allowed_ports | List of allowed ingress ports | list |`<list>`| no |
112
111
| ami | The AMI to use for the instance. By default it is the AMI provided by Amazon with Ubuntu 16.04 | string | `` | no |
112
+
| ami_owner | Owner of the given AMI (ignored if `ami` unset) | string | `` | no |
113
113
| applying_period | The period in seconds over which the specified statistic is applied | string |`60`| no |
114
114
| assign_eip_address | Assign an Elastic IP address to the instance | string |`true`| no |
115
115
| associate_public_ip_address | Associate a public IP address with the instance | string |`true`| no |
116
116
| attributes | Additional attributes (e.g. `1`) | list |`<list>`| no |
117
117
| availability_zone | Availability Zone the instance is launched in. If not set, will be launched in the first AZ of the region | string | `` | no |
118
118
| comparison_operator | The arithmetic operation to use when comparing the specified Statistic and Threshold. Possible values are: GreaterThanOrEqualToThreshold, GreaterThanThreshold, LessThanThreshold, LessThanOrEqualToThreshold. | string |`GreaterThanOrEqualToThreshold`| no |
119
119
| create_default_security_group | Create default Security Group with only Egress traffic allowed | string |`true`| no |
120
-
| default_alarm_action || string |`action/actions/AWS_EC2.InstanceId.Reboot/1.0`| no |
120
+
| default_alarm_action |-| string |`action/actions/AWS_EC2.InstanceId.Reboot/1.0`| no |
121
121
| delete_on_termination | Whether the volume should be destroyed on instance termination | string |`true`| no |
122
122
| delimiter | Delimiter to be used between `name`, `namespace`, `stage`, etc. | string |`-`| no |
Copy file name to clipboardExpand all lines: docs/terraform.md
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1,19 +1,19 @@
1
-
2
1
## Inputs
3
2
4
3
| Name | Description | Type | Default | Required |
5
4
|------|-------------|:----:|:-----:|:-----:|
6
5
| additional_ips_count | Count of additional EIPs | string |`0`| no |
7
6
| allowed_ports | List of allowed ingress ports | list |`<list>`| no |
8
7
| ami | The AMI to use for the instance. By default it is the AMI provided by Amazon with Ubuntu 16.04 | string | `` | no |
8
+
| ami_owner | Owner of the given AMI (ignored if `ami` unset) | string | `` | no |
9
9
| applying_period | The period in seconds over which the specified statistic is applied | string |`60`| no |
10
10
| assign_eip_address | Assign an Elastic IP address to the instance | string |`true`| no |
11
11
| associate_public_ip_address | Associate a public IP address with the instance | string |`true`| no |
12
12
| attributes | Additional attributes (e.g. `1`) | list |`<list>`| no |
13
13
| availability_zone | Availability Zone the instance is launched in. If not set, will be launched in the first AZ of the region | string | `` | no |
14
14
| comparison_operator | The arithmetic operation to use when comparing the specified Statistic and Threshold. Possible values are: GreaterThanOrEqualToThreshold, GreaterThanThreshold, LessThanThreshold, LessThanOrEqualToThreshold. | string |`GreaterThanOrEqualToThreshold`| no |
15
15
| create_default_security_group | Create default Security Group with only Egress traffic allowed | string |`true`| no |
16
-
| default_alarm_action || string |`action/actions/AWS_EC2.InstanceId.Reboot/1.0`| no |
16
+
| default_alarm_action |-| string |`action/actions/AWS_EC2.InstanceId.Reboot/1.0`| no |
17
17
| delete_on_termination | Whether the volume should be destroyed on instance termination | string |`true`| no |
18
18
| delimiter | Delimiter to be used between `name`, `namespace`, `stage`, etc. | string |`-`| no |
0 commit comments