Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New resource: aws_autoscalingplans_scaling_plan #8965

Merged
merged 20 commits into from
Oct 21, 2020
Merged
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
d3eb4da
Add 'aws_autoscalingplans_scaling_plan' resource.
Jun 12, 2019
ce4c98e
Terraform Plugin SDK migration.
ewbankkit Oct 5, 2019
df98e92
Add 'subcategory'.
ewbankkit Nov 22, 2019
b254cec
Replace 'validateStringDoesNotContainAny' with 'validation.StringDoes…
Nov 27, 2019
e88b0dc
Remove 'sidebar_current'.
ewbankkit Mar 17, 2020
6fa9aa6
Use 'go-multierror' in test sweeper.
ewbankkit May 11, 2020
1c979ff
Add 'internal/service/autoscalingplans/waiter' package.
ewbankkit May 11, 2020
2bddadc
Simplify acceptance tests a bit.
ewbankkit May 12, 2020
dadedfe
r/aws_autoscalingplans_scaling_plan: Remove custom set hash functions.
ewbankkit May 21, 2020
22726cf
Use 'testAccAvailableEc2InstanceTypeForRegion', not 'testAccAvailable…
ewbankkit Jul 6, 2020
c21359e
Use 'tfawsresource' acceptance test checkers.
ewbankkit Jul 6, 2020
8304317
Upgrade to Plugin SDK v2 and use Terraform 0.12 syntax in documentation.
ewbankkit Aug 16, 2020
0662a1b
r/aws_autoscalingplans_scaling_plan: Use '_Values()' (#14601).
ewbankkit Oct 16, 2020
3883d3d
r/aws_autoscalingplans_scaling_plan: Better handling of eventual cons…
ewbankkit Oct 16, 2020
bb43021
Add documentation note about service-linked role.
ewbankkit Oct 19, 2020
a2ab9dc
Update website/docs/r/autoscalingplans_scaling_plan.html.markdown
ewbankkit Oct 19, 2020
1b8260e
Add 'testAccPreCheckIamServiceLinkedRole' and use for scaling plans w…
ewbankkit Oct 19, 2020
a9751f7
Merge branch 'issue-6562' of https://github.com/ewbankkit/terraform-p…
ewbankkit Oct 19, 2020
4e83eb6
Use 'StateChangeConf.Delay' to better handle API eventual consistency…
ewbankkit Oct 20, 2020
543e5d3
Update aws/internal/service/autoscalingplans/finder/finder.go
ewbankkit Oct 21, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions website/docs/r/autoscalingplans_scaling_plan.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ description: |-
Manages an AWS Auto Scaling scaling plan.
More information can be found in the [AWS Auto Scaling User Guide](https://docs.aws.amazon.com/autoscaling/plans/userguide/what-is-aws-auto-scaling.html).

~> **NOTE:** The AWS Auto Scaling service uses an AWS IAM service-linked role to manage predictive scaling of Amazon EC2 Auto Scaling groups. The service attempts to automatically create this role the first time a scaling plan with predictive scaling enabled is created.
An [`aws_iam_service_linked_role`](/docs/providers/aws/r/iam_service_linked_role.html) resource can be used to manually managed this role.
ewbankkit marked this conversation as resolved.
Show resolved Hide resolved
See the [AWS documentation](https://docs.aws.amazon.com/autoscaling/plans/userguide/aws-auto-scaling-service-linked-roles.html#create-service-linked-role-manual) for more details.

## Example Usage

### Basic Dynamic Scaling
Expand Down