Feat: Adds cognito and memory
This commit is contained in:
16
infra/knowledge_base/conf.py
Normal file
16
infra/knowledge_base/conf.py
Normal file
@@ -0,0 +1,16 @@
|
||||
import pulumi
|
||||
import pulumi_aws as aws
|
||||
from autotag.autotag import register_auto_tags
|
||||
|
||||
config = pulumi.Config("dynamo")
|
||||
|
||||
project_name = config.require("project_name")
|
||||
stack_name = pulumi.get_stack()
|
||||
environment = config.require("environment")
|
||||
account_id = config.require("account_id")
|
||||
tags = config.require_object("tags")
|
||||
|
||||
aws_region = aws.get_region().id
|
||||
current = aws.get_caller_identity()
|
||||
|
||||
register_auto_tags(tags)
|
||||
Reference in New Issue
Block a user