Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
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
Prev Previous commit
Next Next commit
dont generate bootstrap thing
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
  • Loading branch information
BeryJu committed Jan 20, 2025
commit 8b8b5aed51922f85e5630d440611c8c1a188c278
9 changes: 7 additions & 2 deletions website/docs/install-config/install/aws/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
App,
CfnOutput,
CfnParameter,
DefaultStackSynthesizer,
Duration,
RemovalPolicy,
Stack,
Expand Down Expand Up @@ -38,7 +39,7 @@

class AuthentikStack(Stack):
def __init__(self, scope: Construct, id: str, **kwargs):
super().__init__(scope, id, *kwargs)
super().__init__(scope, id, **kwargs)

### Inputs

Expand Down Expand Up @@ -419,5 +420,9 @@ def __init__(self, scope: Construct, id: str, **kwargs):


app = App()
AuthentikStack(app, "AuthentikStack")
AuthentikStack(
app,
"AuthentikStack",
synthesizer=DefaultStackSynthesizer(generate_bootstrap_version_rule=False),
)
app.synth()
2 changes: 1 addition & 1 deletion website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"private": true,
"license": "MIT",
"scripts": {
"aws-cfn": "cd docs/install-config/install/aws && cdk synth --version-reporting=false > template.yaml && ./fix_template.py",
"aws-cfn": "cd docs/install-config/install/aws && cdk synth --version-reporting=false > template.yaml",
"build": "cp ../docker-compose.yml static/docker-compose.yml && cp ../schema.yml static/schema.yaml && docusaurus gen-api-docs all && cross-env NODE_OPTIONS='--max_old_space_size=65536' docusaurus build",
"build-bundled": "cp ../schema.yml static/schema.yaml && docusaurus gen-api-docs all && cross-env NODE_OPTIONS='--max_old_space_size=65536' docusaurus build",
"deploy": "docusaurus deploy",
Expand Down