atlas-init 0.4.1__py3-none-any.whl → 0.4.3__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- atlas_init/__init__.py +4 -7
- atlas_init/atlas_init.yaml +3 -0
- atlas_init/cli_helper/go.py +103 -57
- atlas_init/cli_root/go_test.py +13 -10
- atlas_init/cli_tf/app.py +4 -0
- atlas_init/cli_tf/debug_logs.py +4 -4
- atlas_init/cli_tf/example_update.py +142 -0
- atlas_init/cli_tf/example_update_test/test_update_example.tf +23 -0
- atlas_init/cli_tf/example_update_test.py +96 -0
- atlas_init/cli_tf/github_logs.py +4 -1
- atlas_init/cli_tf/go_test_run.py +23 -0
- atlas_init/cli_tf/go_test_summary.py +7 -1
- atlas_init/cli_tf/hcl/modifier.py +144 -0
- atlas_init/cli_tf/hcl/modifier_test/test_process_variables_output_.tf +25 -0
- atlas_init/cli_tf/hcl/modifier_test/test_process_variables_variable_.tf +24 -0
- atlas_init/cli_tf/hcl/modifier_test.py +95 -0
- atlas_init/cli_tf/log_clean.py +29 -0
- atlas_init/cli_tf/mock_tf_log.py +1 -1
- atlas_init/cli_tf/schema_v2.py +2 -2
- atlas_init/cli_tf/schema_v2_api_parsing.py +3 -3
- atlas_init/repos/path.py +14 -0
- atlas_init/settings/config.py +24 -13
- atlas_init/settings/path.py +1 -1
- atlas_init/settings/rich_utils.py +1 -1
- atlas_init/tf/.terraform.lock.hcl +16 -16
- atlas_init/tf/main.tf +25 -1
- atlas_init/tf/modules/aws_kms/aws_kms.tf +100 -0
- atlas_init/tf/modules/aws_kms/provider.tf +7 -0
- atlas_init/tf/modules/cloud_provider/cloud_provider.tf +8 -1
- atlas_init/tf/modules/encryption_at_rest/main.tf +29 -0
- atlas_init/tf/modules/encryption_at_rest/provider.tf +9 -0
- atlas_init/tf/variables.tf +5 -0
- {atlas_init-0.4.1.dist-info → atlas_init-0.4.3.dist-info}/METADATA +12 -9
- {atlas_init-0.4.1.dist-info → atlas_init-0.4.3.dist-info}/RECORD +37 -24
- atlas_init-0.4.3.dist-info/licenses/LICENSE +21 -0
- {atlas_init-0.4.1.dist-info → atlas_init-0.4.3.dist-info}/WHEEL +0 -0
- {atlas_init-0.4.1.dist-info → atlas_init-0.4.3.dist-info}/entry_points.txt +0 -0
@@ -0,0 +1,100 @@
|
|
1
|
+
variable "aws_account_id" {
|
2
|
+
type = string
|
3
|
+
}
|
4
|
+
variable "aws_region" {
|
5
|
+
type = string
|
6
|
+
}
|
7
|
+
variable "access_iam_role_arns" {
|
8
|
+
type = map(string)
|
9
|
+
description = "static name to arn"
|
10
|
+
}
|
11
|
+
|
12
|
+
variable "key_suffix" {
|
13
|
+
type = string
|
14
|
+
}
|
15
|
+
|
16
|
+
locals {
|
17
|
+
kms_secretsmanager_condition = {
|
18
|
+
StringEquals = {
|
19
|
+
"kms:CallerAccount" = var.aws_account_id
|
20
|
+
"kms:ViaService" = "secretsmanager.${var.aws_region}.amazonaws.com"
|
21
|
+
}
|
22
|
+
}
|
23
|
+
role_names = { for static_name, role_arn in var.access_iam_role_arns : split("/", role_arn)[length(split("/", role_arn)) - 1] => role_arn }
|
24
|
+
kms_key_policy_statements = [
|
25
|
+
{
|
26
|
+
Sid = "Enable IAM User Permissions Current AWS Account",
|
27
|
+
Effect = "Allow",
|
28
|
+
Principal = {
|
29
|
+
AWS = var.aws_account_id
|
30
|
+
},
|
31
|
+
Action = "kms:*",
|
32
|
+
Resource = "*"
|
33
|
+
},
|
34
|
+
# { useful to check our example guide
|
35
|
+
# "Sid" : "Allow access through AWS Secrets Manager for all principals in the account that are authorized to use AWS Secrets Manager",
|
36
|
+
# "Effect" : "Allow",
|
37
|
+
# # "Principal" : { "AWS" : [aws_iam_role.execution_role.arn] },
|
38
|
+
# "Principal" : { "AWS" : "*" },
|
39
|
+
# "Action" : [
|
40
|
+
# "kms:Decrypt",
|
41
|
+
# ],
|
42
|
+
# "Resource" : "*",
|
43
|
+
# "Condition" : local.kms_secretsmanager_condition
|
44
|
+
# },
|
45
|
+
]
|
46
|
+
|
47
|
+
access_roles = [for role_name, role_arn in local.role_names :
|
48
|
+
{
|
49
|
+
Sid = "Enable IAM Permissions for Role ${role_name}",
|
50
|
+
Effect = "Allow",
|
51
|
+
Principal = {
|
52
|
+
AWS = "*"
|
53
|
+
}
|
54
|
+
Action = "kms:*",
|
55
|
+
Resource = "*"
|
56
|
+
Condition = {
|
57
|
+
StringEquals = {
|
58
|
+
"aws:PrincipalArn" = role_arn
|
59
|
+
}
|
60
|
+
}
|
61
|
+
}
|
62
|
+
]
|
63
|
+
kms_key_policy_json = jsonencode({
|
64
|
+
Version = "2012-10-17",
|
65
|
+
Statement = concat(local.kms_key_policy_statements, local.access_roles)
|
66
|
+
})
|
67
|
+
}
|
68
|
+
resource "aws_kms_key" "this" {
|
69
|
+
description = "KMS key for atlas-init ${var.key_suffix}"
|
70
|
+
deletion_window_in_days = 7
|
71
|
+
multi_region = true
|
72
|
+
policy = local.kms_key_policy_json
|
73
|
+
}
|
74
|
+
|
75
|
+
resource "aws_iam_role_policy" "kms_access" {
|
76
|
+
for_each = var.access_iam_role_arns
|
77
|
+
name = "atlas-init-${each.key}-kms-access"
|
78
|
+
role = split("/", each.value)[length(split("/", each.value)) - 1]
|
79
|
+
|
80
|
+
policy = <<-EOF
|
81
|
+
{
|
82
|
+
"Version": "2012-10-17",
|
83
|
+
"Statement": [
|
84
|
+
{
|
85
|
+
"Effect": "Allow",
|
86
|
+
"Action": [
|
87
|
+
"kms:*"
|
88
|
+
],
|
89
|
+
"Resource": [
|
90
|
+
"${aws_kms_key.this.arn}"
|
91
|
+
]
|
92
|
+
}
|
93
|
+
]
|
94
|
+
}
|
95
|
+
EOF
|
96
|
+
}
|
97
|
+
|
98
|
+
output "kms_key_id" {
|
99
|
+
value = aws_kms_key.this.id
|
100
|
+
}
|
@@ -53,7 +53,14 @@ output "env_vars" {
|
|
53
53
|
}
|
54
54
|
}
|
55
55
|
|
56
|
-
|
57
56
|
output "iam_role_name" {
|
58
57
|
value = aws_iam_role.aws_role.name
|
58
|
+
}
|
59
|
+
|
60
|
+
output "atlas_role_id" {
|
61
|
+
value = mongodbatlas_cloud_provider_access_authorization.auth_role.role_id
|
62
|
+
}
|
63
|
+
|
64
|
+
output "iam_role_arn" {
|
65
|
+
value = aws_iam_role.aws_role.arn
|
59
66
|
}
|
@@ -0,0 +1,29 @@
|
|
1
|
+
variable "atlas_regions" {
|
2
|
+
type = list(string)
|
3
|
+
default = ["US_EAST_1"]
|
4
|
+
}
|
5
|
+
|
6
|
+
variable "kms_key_id" {
|
7
|
+
type = string
|
8
|
+
}
|
9
|
+
variable "project_id" {
|
10
|
+
type = string
|
11
|
+
}
|
12
|
+
|
13
|
+
variable "atlas_role_id" {
|
14
|
+
type = string
|
15
|
+
}
|
16
|
+
|
17
|
+
resource "mongodbatlas_encryption_at_rest" "this" {
|
18
|
+
project_id = var.project_id
|
19
|
+
dynamic "aws_kms_config" {
|
20
|
+
for_each = var.atlas_regions
|
21
|
+
content {
|
22
|
+
enabled = true
|
23
|
+
customer_master_key_id = var.kms_key_id
|
24
|
+
region = aws_kms_config.value
|
25
|
+
role_id = var.atlas_role_id
|
26
|
+
|
27
|
+
}
|
28
|
+
}
|
29
|
+
}
|
atlas_init/tf/variables.tf
CHANGED
@@ -1,29 +1,32 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: atlas-init
|
3
|
-
Version: 0.4.
|
3
|
+
Version: 0.4.3
|
4
4
|
Project-URL: Documentation, https://github.com/EspenAlbert/atlas-init#readme
|
5
5
|
Project-URL: Issues, https://github.com/EspenAlbert/atlas-init/issues
|
6
6
|
Project-URL: Source, https://github.com/EspenAlbert/atlas-init
|
7
7
|
Author-email: EspenAlbert <albertespen@gmail.com>
|
8
8
|
License-Expression: MIT
|
9
|
+
License-File: LICENSE
|
9
10
|
Classifier: Development Status :: 4 - Beta
|
10
11
|
Classifier: Programming Language :: Python
|
11
|
-
Classifier: Programming Language :: Python :: 3.
|
12
|
-
Requires-Python: >=3.
|
12
|
+
Classifier: Programming Language :: Python :: 3.13
|
13
|
+
Requires-Python: >=3.13
|
13
14
|
Requires-Dist: appdirs==1.4.4
|
14
15
|
Requires-Dist: boto3==1.35.92
|
15
16
|
Requires-Dist: gitpython==3.1.42
|
16
17
|
Requires-Dist: humanize==4.9.0
|
17
|
-
Requires-Dist: model-lib==
|
18
|
-
Requires-Dist: mypy-boto3-cloudformation==1.
|
18
|
+
Requires-Dist: model-lib[toml]==1.0.0b3
|
19
|
+
Requires-Dist: mypy-boto3-cloudformation==1.37.22
|
19
20
|
Requires-Dist: orjson==3.10.13
|
20
21
|
Requires-Dist: pydantic-settings==2.7.1
|
21
|
-
Requires-Dist: pygithub==2.
|
22
|
+
Requires-Dist: pygithub==2.6.1
|
23
|
+
Requires-Dist: python-hcl2==6.1.0
|
22
24
|
Requires-Dist: requests==2.32.2
|
23
|
-
Requires-Dist: rich==
|
25
|
+
Requires-Dist: rich==14.0.0
|
24
26
|
Requires-Dist: stringcase==1.2.0
|
25
|
-
Requires-Dist: tenacity==
|
27
|
+
Requires-Dist: tenacity==9.0.0
|
26
28
|
Requires-Dist: typer==0.15.1
|
29
|
+
Requires-Dist: zero-3rdparty==1.0.0b2
|
27
30
|
Description-Content-Type: text/markdown
|
28
31
|
|
29
32
|
# Atlas Init - A CLI for developing integrations with MongoDB Atlas
|
@@ -117,7 +120,7 @@ atlas_init # should show how to use the cli
|
|
117
120
|
```
|
118
121
|
|
119
122
|
### CI Installation Tests (`pip install` local wheel)
|
120
|
-
-
|
123
|
+
- `uv sync`
|
121
124
|
- creates a local `.venv` builds the wheel from this repo and installs it
|
122
125
|
- use `export ATLAS_INIT_PROFILES_PATH=/somewhere/to/store/your/env-vars/and/tf/state`
|
123
126
|
|
@@ -1,6 +1,6 @@
|
|
1
|
-
atlas_init/__init__.py,sha256=
|
1
|
+
atlas_init/__init__.py,sha256=q9-9-IGh80IqihCuSfv3KrmdFUcLFaPb8r2Qzir2oXA,263
|
2
2
|
atlas_init/__main__.py,sha256=dY1dWWvwxRZMmnOFla6RSfti-hMeLeKdoXP7SVYqMUc,52
|
3
|
-
atlas_init/atlas_init.yaml,sha256=
|
3
|
+
atlas_init/atlas_init.yaml,sha256=Q_gFMbTa8OKxS8GbjszyrMA05nap8HI_Oe-cgQZNEPk,2351
|
4
4
|
atlas_init/cli.py,sha256=znbyirZl_tChG4SoGQPEM5iSsJiSVslCdExSja1qvUo,9262
|
5
5
|
atlas_init/cli_args.py,sha256=tiwUYAE0JBSl9lHV6VJ41vFCU90ChBZ4mKvi-YoF_HY,541
|
6
6
|
atlas_init/humps.py,sha256=l0ZXXuI34wwd9TskXhCjULfGbUyK-qNmiyC6_2ow6kU,7339
|
@@ -14,60 +14,70 @@ atlas_init/cli_cfn/contract.py,sha256=6gRCvKRh6bn6BiQ3wyai_XNUwbWSqSRlg5GFvSdEcR
|
|
14
14
|
atlas_init/cli_cfn/example.py,sha256=_JuFyNEb7QvD4T8jQyAPI3TgnHW0wz0kVuncB5UkbEA,8530
|
15
15
|
atlas_init/cli_cfn/files.py,sha256=kwKDh__O__it2Shz3pHhnle4XUesRd4P929twxUODfI,2651
|
16
16
|
atlas_init/cli_helper/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
17
|
-
atlas_init/cli_helper/go.py,sha256=
|
17
|
+
atlas_init/cli_helper/go.py,sha256=Jid_aUzheyzAuZjcOZZXrXbjbazIQKgnrzioPcb1vh8,9725
|
18
18
|
atlas_init/cli_helper/run.py,sha256=va1eFP-hRvM76lVzvqH8eqGnyfcbzgR0zCMbL9Neb58,3660
|
19
19
|
atlas_init/cli_helper/run_manager.py,sha256=USNRHSm1zuu4H9NRamnxQ2D4gKzrHLk8dZe0G95Be14,9022
|
20
20
|
atlas_init/cli_helper/sdk.py,sha256=exh58-VZwxtosaxM269C62EEy1VnpJPOVziPDPkGsmE,2983
|
21
21
|
atlas_init/cli_helper/sdk_auto_changes.py,sha256=oWyXw7P0PdO28hclRvza_RcIVXAyzu0lCYTJTNBDMeo,189
|
22
22
|
atlas_init/cli_helper/tf_runner.py,sha256=ZEh4WlI-6RV84uBtGNcFgAr8M03As-BLz4fu9wCPULw,3327
|
23
23
|
atlas_init/cli_root/__init__.py,sha256=Mf0wqy4kqq8pmbjLa98zOGuUWv0bLk2OYGc1n1_ZmZ4,223
|
24
|
-
atlas_init/cli_root/go_test.py,sha256=
|
24
|
+
atlas_init/cli_root/go_test.py,sha256=roQIOS-qVfNhJMztR-V3hjtxFMf7-Ioy3e1ffqtTRyo,4601
|
25
25
|
atlas_init/cli_root/trigger.py,sha256=In3oS-z8gYYsPxQjHsGmqB1AsUtHPDTxwva5arsajvU,8227
|
26
26
|
atlas_init/cli_tf/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
27
|
-
atlas_init/cli_tf/app.py,sha256=
|
27
|
+
atlas_init/cli_tf/app.py,sha256=6dFc9NMaM25vC4BMa8HCDDks9dD74nwauD70GnWBmZU,11600
|
28
28
|
atlas_init/cli_tf/changelog.py,sha256=biWYKf1pZvXZ-jEgcZ5q9sY7nTGrL2PuI0h9mCILf_g,3181
|
29
|
-
atlas_init/cli_tf/debug_logs.py,sha256=
|
29
|
+
atlas_init/cli_tf/debug_logs.py,sha256=50J3wgfbdcMLPJ5_7qLkUuEXeZwFvjqyusXKgrcKMls,10048
|
30
30
|
atlas_init/cli_tf/debug_logs_test_data.py,sha256=s85x78pFweVyqL2BchkLuvuG9hm-bwl8zcSO-IQqm6c,9736
|
31
31
|
atlas_init/cli_tf/debug_logs_test_data_package_config.py,sha256=BOAgln1pWne_ZhP6a0SM2ddn2csr0sgGkYf2kMS_V9o,1666
|
32
|
-
atlas_init/cli_tf/
|
33
|
-
atlas_init/cli_tf/
|
34
|
-
atlas_init/cli_tf/
|
35
|
-
atlas_init/cli_tf/
|
32
|
+
atlas_init/cli_tf/example_update.py,sha256=YctAKZUb932x4VHBI_5T_0jOIbMDYdJaSOVVjJRUMEM,5256
|
33
|
+
atlas_init/cli_tf/example_update_test.py,sha256=EI_6ZsOaGt7iX2JvJ3rvv3B2zKRRjI-d3P8R-tvgFc8,2859
|
34
|
+
atlas_init/cli_tf/github_logs.py,sha256=jJs74npytc7f_nxmUG_CgWpBrKCuF5nZtpwsSii-3XY,8365
|
35
|
+
atlas_init/cli_tf/go_test_run.py,sha256=BrEX-U7wGd4pV_PZycttbbBgG2ac0vOLeJwm65zFTmo,7420
|
36
|
+
atlas_init/cli_tf/go_test_summary.py,sha256=4hPjT5gKRixXWO6NtTRkavDXPIZmC0TJ-7GhN2h33H0,5590
|
37
|
+
atlas_init/cli_tf/log_clean.py,sha256=lVbw6fDstr9HanGVEv6zBcfs_4aR2TcPHCIx1poU5sY,926
|
38
|
+
atlas_init/cli_tf/mock_tf_log.py,sha256=LTUL5vJlEIdkwVuvc78gZkEjTmsn-hWBlM8tXIYmZB4,7557
|
36
39
|
atlas_init/cli_tf/schema.py,sha256=iwvb4wD2Wba0MMu7ooTNAIi1jHbpLiXGPOT51_o_YW8,12431
|
37
40
|
atlas_init/cli_tf/schema_go_parser.py,sha256=PiRfFFVnkhltxcGFfOCgH53wwzIEynw2BXmSfaINLL8,8294
|
38
41
|
atlas_init/cli_tf/schema_inspection.py,sha256=ujLvGfg3baByND4nRD0drZoI45STxo3VfYvim-PfVOc,1764
|
39
42
|
atlas_init/cli_tf/schema_table.py,sha256=sxH-WUvBOHPI-HH2-2Y_MwKN-_POlQX3599h6YbfY1U,5261
|
40
43
|
atlas_init/cli_tf/schema_table_models.py,sha256=9gS3gYris0MjEWsY_gbLWcZwJokCUJS1TcVXnq7w5SA,5003
|
41
|
-
atlas_init/cli_tf/schema_v2.py,sha256=
|
42
|
-
atlas_init/cli_tf/schema_v2_api_parsing.py,sha256=
|
44
|
+
atlas_init/cli_tf/schema_v2.py,sha256=IKVsyY2wg3SufXi5LPdC6a9FmI4N_8CPZbrnKcwZJcw,21960
|
45
|
+
atlas_init/cli_tf/schema_v2_api_parsing.py,sha256=ktZ1-XzOmvtzlz4ztgbOQ60y_5kF_NQDMmqvR9aOoVg,12888
|
43
46
|
atlas_init/cli_tf/schema_v2_sdk.py,sha256=AsAERT18FC97Gdb8r-qFInr4pSA15IGMUvCn-065XGE,12630
|
44
47
|
atlas_init/cli_tf/schema_v3.py,sha256=LUeI2kniUDfd-5iP1TCLXb-Js92VYSXB6FCVLDYAIak,5788
|
45
48
|
atlas_init/cli_tf/schema_v3_sdk.py,sha256=5RWbhqKT8jEGgJrQaaT7xTRToviIzZZOxuJO5MNLYwo,9929
|
46
49
|
atlas_init/cli_tf/schema_v3_sdk_base.py,sha256=oe7WRZc0R_UYP5Yry4kDAMxOKAUHvQrc9bIdjfLshYk,2131
|
47
50
|
atlas_init/cli_tf/schema_v3_sdk_create.py,sha256=64AluGbQP47RRdY6Cz4KZRN9DdQISW5lLxQ-E1od5dc,8342
|
51
|
+
atlas_init/cli_tf/example_update_test/test_update_example.tf,sha256=Bun55357kL84VuWpVx7XvpZHndkY6s8VfFPGAkK_DzA,524
|
48
52
|
atlas_init/cli_tf/hcl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
49
53
|
atlas_init/cli_tf/hcl/cli.py,sha256=6V1kU_a1c4LA3rS7sWN821gQex00fb70AUyd07xO0es,5760
|
50
54
|
atlas_init/cli_tf/hcl/cluster_mig.py,sha256=kMb_0V_XWr_iQj-mZZ-mmzIvYOLfuC4FYGYYSe9VKkQ,12496
|
55
|
+
atlas_init/cli_tf/hcl/modifier.py,sha256=zmfHgRR48IECF-8Pj915kCjM0VrW2KAAQu1KDDgDF9Y,4817
|
56
|
+
atlas_init/cli_tf/hcl/modifier_test.py,sha256=Jdqa-iZ1ifbz_yIsjD055meFMZJpetx_abg1W4LVBZ8,2740
|
51
57
|
atlas_init/cli_tf/hcl/parser.py,sha256=wqj0YIn9nyEfjRqZnM7FH4yL43-K9ANvRiy9RCahImc,4833
|
58
|
+
atlas_init/cli_tf/hcl/modifier_test/test_process_variables_output_.tf,sha256=GMRAFFlBWOg8Fu5mQDMIA7SWD-sSjkCBe__gIsop3mA,646
|
59
|
+
atlas_init/cli_tf/hcl/modifier_test/test_process_variables_variable_.tf,sha256=2vVCTHkqP0aud1EA428LMsPnUeTRYGFkb3RlDxsKszk,605
|
52
60
|
atlas_init/cloud/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
53
61
|
atlas_init/cloud/aws.py,sha256=AXVobJ724S6OeEs_uXH9dvecc_klnXqejRnI7KaLyzo,4935
|
54
62
|
atlas_init/repos/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
55
63
|
atlas_init/repos/cfn.py,sha256=rjyVVxRhWL65tdAbEHT72UReK2h99Bj6RA4O2pBO-bc,2466
|
56
64
|
atlas_init/repos/go_sdk.py,sha256=1OzM9DjHEAzAAuI9ygoRRuhUK2gqpOhXExXRqhqa0tg,1793
|
57
|
-
atlas_init/repos/path.py,sha256=
|
65
|
+
atlas_init/repos/path.py,sha256=5XsXrxpyQi2bkV_qOtbIhL7-XGwW68XUmCTOdyfoz1A,4517
|
58
66
|
atlas_init/settings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
59
|
-
atlas_init/settings/config.py,sha256=
|
67
|
+
atlas_init/settings/config.py,sha256=Cb483vmKOnNUK6m5KlhDiGeDJcZoJ1vHREdiddYONuQ,7037
|
60
68
|
atlas_init/settings/env_vars.py,sha256=1M4EKveUbrHaEuSyWyZ_bdK7MUTHhBu8-tFGSimqCCI,10659
|
61
69
|
atlas_init/settings/env_vars_generated.py,sha256=c3dMShnSvqLsiJTIMoHCpC9Tvk35b5lra40Ske9l4gE,980
|
62
70
|
atlas_init/settings/interactive.py,sha256=Xy1Z5WMAOSaJ-vQI_4xjAbSR92rWQgnffwVoDT27L68,340
|
63
|
-
atlas_init/settings/path.py,sha256=
|
64
|
-
atlas_init/settings/rich_utils.py,sha256=
|
65
|
-
atlas_init/tf/.terraform.lock.hcl,sha256=
|
71
|
+
atlas_init/settings/path.py,sha256=MUKw6vrcOBXQUc15ItC9go8qkCDs3ZkmhqUveuolgeI,2611
|
72
|
+
atlas_init/settings/rich_utils.py,sha256=mjYCZ7Sx-OTsjv7AZ4qyjXqvq3TOaczLfDjOQK_dKWk,2012
|
73
|
+
atlas_init/tf/.terraform.lock.hcl,sha256=71G7Kov2C4M0qOIyeIL90Vw8j8nkJktNUT3uPwUOu5w,6876
|
66
74
|
atlas_init/tf/always.tf,sha256=ij6QKI8Lg0140bFZwOyiYK5c-2p5e7AGZ1qKbYyv6Os,1359
|
67
|
-
atlas_init/tf/main.tf,sha256=
|
75
|
+
atlas_init/tf/main.tf,sha256=Et2j61c33rWYh2V889ThmoGi1HGnyTxSwsBfgTJc0B0,4641
|
68
76
|
atlas_init/tf/outputs.tf,sha256=Jd1n-rNt0cv-tqXEXaFxJQE7poR_T7FAKEVuhAJd3aE,3857
|
69
77
|
atlas_init/tf/providers.tf,sha256=ayfaz4nekzWzUuH56lZzrJTX1025Wej-xzt0Yi80Uh8,819
|
70
|
-
atlas_init/tf/variables.tf,sha256=
|
78
|
+
atlas_init/tf/variables.tf,sha256=f1WiFPDDYbn7h1HRJGQJ0uOWWBF2t4h4uVPjpQl57_Y,2169
|
79
|
+
atlas_init/tf/modules/aws_kms/aws_kms.tf,sha256=SpegPwvVMRWgyRbTcZjMMVqE6cHBPbJ1rX5Gz6dUd3c,2531
|
80
|
+
atlas_init/tf/modules/aws_kms/provider.tf,sha256=V0QcTh2IQWr33kcHKG0m_qxapRwIT8_HrMtfylEJBVU,90
|
71
81
|
atlas_init/tf/modules/aws_s3/aws_s3.tf,sha256=SP5vZf5Y2g9Z5yWpBKSKzEEF5FITPycoGKe-kaHoVCI,738
|
72
82
|
atlas_init/tf/modules/aws_s3/provider.tf,sha256=RmUmMzMfOT5LZIWYqxM2EgtkI7JWqZfj3p3TxZkZoLk,161
|
73
83
|
atlas_init/tf/modules/aws_vars/aws_vars.tf,sha256=0SItDIZUWQCpw4o0y2jZjUY1LnUeUdAL2wOjng3GDtc,508
|
@@ -78,10 +88,12 @@ atlas_init/tf/modules/cfn/cfn.tf,sha256=ajBFLh0RYwAqRhp9-yanYKqfjNus0r88_gxRFdFf
|
|
78
88
|
atlas_init/tf/modules/cfn/kms.tf,sha256=W-HfFbQ2J1GQC279Ou-PLq4huf0mGn235BCEgO7n9aI,1635
|
79
89
|
atlas_init/tf/modules/cfn/resource_actions.yaml,sha256=rPQZ46YiN-PnpY91hDPOFJgZtlAiyIiyVE3P9yvo50o,540
|
80
90
|
atlas_init/tf/modules/cfn/variables.tf,sha256=qbYffl4ly0K8IRTwG3P7-Yyzm5OBTVRZCmDP69WMp44,379
|
81
|
-
atlas_init/tf/modules/cloud_provider/cloud_provider.tf,sha256=
|
91
|
+
atlas_init/tf/modules/cloud_provider/cloud_provider.tf,sha256=aDphNyoR1PLrTpp2TMmetS_LD8SVpgd2YOA2K-5XJtk,1448
|
82
92
|
atlas_init/tf/modules/cloud_provider/provider.tf,sha256=IDpMSLO3GjkxCvF-4qdHugxYq_w-Epujr51HZf_xB0Y,237
|
83
93
|
atlas_init/tf/modules/cluster/cluster.tf,sha256=TId4JsmSDlSHtIzmo3p4GKUVRhzZK9eoiI7DmoYgdq0,3041
|
84
94
|
atlas_init/tf/modules/cluster/provider.tf,sha256=RmUmMzMfOT5LZIWYqxM2EgtkI7JWqZfj3p3TxZkZoLk,161
|
95
|
+
atlas_init/tf/modules/encryption_at_rest/main.tf,sha256=91j1oFiuiBf2wookVVKLwvz43z_qfKLWLZ4ALBy-DAw,566
|
96
|
+
atlas_init/tf/modules/encryption_at_rest/provider.tf,sha256=bTLeeNQjVu9jF_Z7vnY6w9yZP61okCEednMPkS3MLlg,162
|
85
97
|
atlas_init/tf/modules/federated_vars/federated_vars.tf,sha256=YTrvDFCHpxwSeoiCOQRB1GdktH3OxFkUVsFYvLhwG2o,1238
|
86
98
|
atlas_init/tf/modules/federated_vars/provider.tf,sha256=RmUmMzMfOT5LZIWYqxM2EgtkI7JWqZfj3p3TxZkZoLk,161
|
87
99
|
atlas_init/tf/modules/project_extra/project_extra.tf,sha256=YkMFLYuAmWd-Hn3afgN3qhdppRLOEL6sStfEN5dOxcc,1512
|
@@ -90,7 +102,8 @@ atlas_init/tf/modules/vpc_peering/vpc_peering.tf,sha256=hJ3KJdGbLpOQednUpVuiJ0Cq
|
|
90
102
|
atlas_init/tf/modules/vpc_privatelink/atlas-privatelink.tf,sha256=FloaaX1MNDvoMZxBnEopeLKyfIlq6kaX2dmx8WWlXNU,1298
|
91
103
|
atlas_init/tf/modules/vpc_privatelink/variables.tf,sha256=gktHCDYD4rz6CEpLg5aiXcFbugw4L5S2Fqc52QYdJyc,255
|
92
104
|
atlas_init/tf/modules/vpc_privatelink/versions.tf,sha256=G0u5V_Hvvrkux_tqfOY05pA-GzSp_qILpfx1dZaTGDc,237
|
93
|
-
atlas_init-0.4.
|
94
|
-
atlas_init-0.4.
|
95
|
-
atlas_init-0.4.
|
96
|
-
atlas_init-0.4.
|
105
|
+
atlas_init-0.4.3.dist-info/METADATA,sha256=IhxAuso_9KCXetBtCOX3wlDTKwJLTxX7mpZrtM5TcJE,5723
|
106
|
+
atlas_init-0.4.3.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
107
|
+
atlas_init-0.4.3.dist-info/entry_points.txt,sha256=oSNFIEAS9nUZyyZ8Fc-0F0U5j-NErygy01LpJVSHapQ,57
|
108
|
+
atlas_init-0.4.3.dist-info/licenses/LICENSE,sha256=aKnucPyXnK1A-aXn4vac71zRpcB5BXjDyl4PDyi_hZg,1069
|
109
|
+
atlas_init-0.4.3.dist-info/RECORD,,
|
@@ -0,0 +1,21 @@
|
|
1
|
+
MIT License
|
2
|
+
|
3
|
+
Copyright (c) 2025 Espen Albert
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
File without changes
|
File without changes
|