chore(deps): update terraform cloudposse/api-gateway/aws to v0.7.1 #2
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
0.3.1
->0.7.1
Release Notes
cloudposse/terraform-aws-api-gateway (cloudposse/api-gateway/aws)
v0.7.1
Compare Source
feat: support vpc endpoints @dudymas (#52)
what
why
appropriately
references
🤖 Automatic Updates
Migrate new test account @osterman (#51)
what
.github/settings.yml
.github/chatops.yml
fileswhy
.github/settings.yml
from org level to getterratest
environmenttest
accountReferences
Update .github/settings.yml @osterman (#47)
what
.github/settings.yml
.github/auto-release.yml
fileswhy
.github/settings.yml
from org levelreferences
Update release workflow to allow pull-requests: write @osterman (#45)
what
.github/workflows/release.yaml
) to have permission to comment on PRwhy
Update GitHub Workflows to use shared workflows from '.github' repo @osterman (#44)
what
.github/workflows
) to use shared workflows from.github
repowhy
v0.7.0
Compare Source
🚀 Enhancements
Added variable for cloudwatch Full Request and Response Logs: data_trace_enabled @sheilman16 (#43)
Repeat of PR 36 with requested updates from main and to readme.
what
data_trace_enabled
to theaws_api_gateway_method_settings
resourcewhy
The variable
logging_level
controls CloudWatch log setting in the AWS UI for OFF, INFO, and ERROR, but doesn't include an option for "Full Request and Response Logs". In the AWS UI for API GW, there's an additional option, "Full Request and Response Logs", as shown in the screenshot:According to terraform documentation, the variable
data_trace_enabled = true
is required in conjunction withlogging_level = "INFO"
to enable "Full Request and Response Logs". This is added to theaws_api_gateway_method_settings
resource in thesettings
code block [2]:references
[1] Terraform resource:
https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/api_gateway_method_settings
[2] Closed Issue with Terraform citing solutionhttps://github.com/hashicorp/terraform-provider-aws/issues/35863#issuecomment-19546336122
🤖 Automatic Updates
Update GitHub Workflows to Fix ReviewDog TFLint Action @osterman (#42)
what
.github/workflows
) to addissue: write
permission needed by ReviewDogtflint
actionwhy
Update GitHub workflows @osterman (#41)
what
.github/workflows/settings.yaml
)why
Use GitHub Action Workflows from `cloudposse/.github` Repo @osterman (#40)
what
why
cldouposse/.github
repositoryAdd GitHub Settings @osterman (#39)
what
.github/settings.yaml
)why
Update Scaffolding @osterman (#37)
what
make readme
to rebuildREADME.md
fromREADME.yaml
why
.github
repov0.6.0
Compare Source
Fix error when create private API Gateway with resource policy @ByJacob (#25)
what
aws_api_gateway_deployment
andaws_api_gateway_rest_api_policy
why
references
v0.5.0
Compare Source
🤖 Automatic Updates
Update Terraform cloudposse/iam-role/aws to v0.19.0 (main) @renovate (#31)
This PR contains the following updates:
0.16.1
->0.19.0
Release Notes
cloudposse/terraform-aws-iam-role (cloudposse/iam-role/aws)
v0.19.0
Compare Source
IAM Role name length limit @​goruha (#​58)
what
why
Sync github @​max-lobur (#​54)
Rebuild github dir from the template
v0.18.0
Compare Source
v0.17.0
Compare Source
Update main.tf @​karinatitov (#​50)
have a chance to configure the name of the policy
what
why
git.io->cloudposse.tools update @​dylanbannon (#​46)
what and why
Change all references to
git.io/build-harness
intocloudposse.tools/build-harness
, sincegit.io
redirects will stop working on April 29th, 2022.References
v0.16.2
Compare Source
🚀 Enhancements
Add enabled check to data source @​nitrocode (#​45)
what
why
references
Update Terraform cloudposse/cloudwatch-logs/aws to v0.6.8 (main) @renovate (#30)
This PR contains the following updates:
0.6.5
->0.6.8
Release Notes
cloudposse/terraform-aws-cloudwatch-logs (cloudposse/cloudwatch-logs/aws)
v0.6.8
Compare Source
🚀 Enhancements
Fix mistake in policy. Part2 @​ramses999 (#​39)
what
This is just a continuation of the fix https://github.com/cloudposse/terraform-aws-cloudwatch-logs/pull/38.
Prod environment tested. That's how it works correctly.
v0.6.7
Compare Source
🚀 Enhancements
Fix mistake in policy @​ramses999 (#​38)
what
Fix mistake in policy
why
The policy is created simply by ARN without the ":" construct, which is necessary to create the correct policy for the role.
Without this ":" construct, the policy is created, but it does not work correctly.
This error was discovered when I tried to create a cloudwatch group in the cloudtrail module.
I got the response "Error: Error updating CloudTrail: InvalidCloudWatchLogsLogGroupArnException: Access denied. Verify in IAM that the role has adequate permissions."
After studying the code, I realized that I need to add the construction ":*" in a couple of lines.
My solution looks like this, I need to replace the lines in file :
This line:
join("", aws_cloudwatch_log_group.default..arn),
replaced by
"${join("", aws_cloudwatch_log_group.default..arn)}:*"
You need to do this in both identical lines.
Perhaps you can suggest a better solution, I'm new to terraforming.
references
https://github.com/cloudposse/terraform-aws-cloudwatch-logs/issues/37
https://github.com/cloudposse/terraform-aws-cloudwatch-logs/blob/master/iam.tf#L55
v0.6.6
Compare Source
🤖 Automatic Updates
Update Terraform cloudposse/iam-role/aws to v0.16.2 @​renovate (#​33)
This PR contains the following updates:
0.16.1
->0.16.2
v0.4.0
Compare Source
Fix typo in example @vanastassiou (#19)
what
why
references
Sync github @max-lobur (#24)
Rebuild github dir from the template
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.