We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04717cc commit 0e4c4eaCopy full SHA for 0e4c4ea
website/docs/cdktf/python/r/lambda_alias.html.markdown
@@ -59,8 +59,7 @@ class MyConvertedCode(TerraformStack):
59
name="staging",
60
routing_config=LambdaAliasRoutingConfig(
61
additional_version_weights={
62
- "1": 0.1,
63
- "3": 0.2
+ "1": 0.1
64
}
65
)
66
website/docs/r/lambda_alias.html.markdown
@@ -37,8 +37,7 @@ resource "aws_lambda_alias" "example" {
37
routing_config {
38
additional_version_weights = {
39
"1" = 0.1 # Send 10% of traffic to version 1
40
- "3" = 0.2 # Send 20% of traffic to version 3
41
- # Remaining 70% goes to version 2 (the primary version)
+ # Remaining 90% goes to version 2 (the primary version)
42
43
44
0 commit comments