Added documentation around access_logs enabled and reverted default
value to true
This commit is contained in:
parent
f290a3a955
commit
7dd376216b
|
@ -91,7 +91,7 @@ func resourceAwsAlb() *schema.Resource {
|
||||||
"enabled": &schema.Schema{
|
"enabled": &schema.Schema{
|
||||||
Type: schema.TypeBool,
|
Type: schema.TypeBool,
|
||||||
Optional: true,
|
Optional: true,
|
||||||
Default: false,
|
Default: true,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
|
@ -54,6 +54,7 @@ Access Logs (`access_logs`) support the following:
|
||||||
|
|
||||||
* `bucket` - (Required) The S3 bucket name to store the logs in.
|
* `bucket` - (Required) The S3 bucket name to store the logs in.
|
||||||
* `prefix` - (Optional) The S3 bucket prefix. Logs are stored in the root if not configured.
|
* `prefix` - (Optional) The S3 bucket prefix. Logs are stored in the root if not configured.
|
||||||
|
* `enabled` = (Optional) Boolean to enable / disable `access_logs`. Default is `true`
|
||||||
|
|
||||||
## Attributes Reference
|
## Attributes Reference
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue