atlas-init 0.1.1__py3-none-any.whl → 0.1.4__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 +3 -3
- atlas_init/atlas_init.yaml +18 -1
- atlas_init/cli.py +62 -70
- atlas_init/cli_cfn/app.py +40 -117
- atlas_init/cli_cfn/{cfn.py → aws.py} +129 -14
- atlas_init/cli_cfn/cfn_parameter_finder.py +89 -6
- atlas_init/cli_cfn/example.py +203 -0
- atlas_init/cli_cfn/files.py +63 -0
- atlas_init/cli_helper/run.py +18 -2
- atlas_init/cli_helper/tf_runner.py +4 -6
- atlas_init/cli_root/__init__.py +0 -0
- atlas_init/cli_root/trigger.py +153 -0
- atlas_init/cli_tf/app.py +211 -4
- atlas_init/cli_tf/changelog.py +103 -0
- atlas_init/cli_tf/debug_logs.py +221 -0
- atlas_init/cli_tf/debug_logs_test_data.py +253 -0
- atlas_init/cli_tf/github_logs.py +229 -0
- atlas_init/cli_tf/go_test_run.py +194 -0
- atlas_init/cli_tf/go_test_run_format.py +31 -0
- atlas_init/cli_tf/go_test_summary.py +144 -0
- atlas_init/cli_tf/hcl/__init__.py +0 -0
- atlas_init/cli_tf/hcl/cli.py +161 -0
- atlas_init/cli_tf/hcl/cluster_mig.py +348 -0
- atlas_init/cli_tf/hcl/parser.py +140 -0
- atlas_init/cli_tf/schema.py +222 -18
- atlas_init/cli_tf/schema_go_parser.py +236 -0
- atlas_init/cli_tf/schema_table.py +150 -0
- atlas_init/cli_tf/schema_table_models.py +155 -0
- atlas_init/cli_tf/schema_v2.py +599 -0
- atlas_init/cli_tf/schema_v2_api_parsing.py +298 -0
- atlas_init/cli_tf/schema_v2_sdk.py +361 -0
- atlas_init/cli_tf/schema_v3.py +222 -0
- atlas_init/cli_tf/schema_v3_sdk.py +279 -0
- atlas_init/cli_tf/schema_v3_sdk_base.py +68 -0
- atlas_init/cli_tf/schema_v3_sdk_create.py +216 -0
- atlas_init/humps.py +253 -0
- atlas_init/repos/cfn.py +6 -1
- atlas_init/repos/path.py +3 -3
- atlas_init/settings/config.py +14 -4
- atlas_init/settings/env_vars.py +16 -1
- atlas_init/settings/path.py +12 -1
- atlas_init/settings/rich_utils.py +2 -0
- atlas_init/terraform.yaml +77 -1
- atlas_init/tf/.terraform.lock.hcl +59 -83
- atlas_init/tf/always.tf +7 -0
- atlas_init/tf/main.tf +3 -0
- atlas_init/tf/modules/aws_s3/provider.tf +1 -1
- atlas_init/tf/modules/aws_vars/aws_vars.tf +2 -0
- atlas_init/tf/modules/aws_vpc/provider.tf +4 -1
- atlas_init/tf/modules/cfn/cfn.tf +47 -33
- atlas_init/tf/modules/cfn/kms.tf +54 -0
- atlas_init/tf/modules/cfn/resource_actions.yaml +1 -0
- atlas_init/tf/modules/cfn/variables.tf +31 -0
- atlas_init/tf/modules/cloud_provider/cloud_provider.tf +1 -0
- atlas_init/tf/modules/cloud_provider/provider.tf +1 -1
- atlas_init/tf/modules/cluster/cluster.tf +34 -24
- atlas_init/tf/modules/cluster/provider.tf +1 -1
- atlas_init/tf/modules/federated_vars/federated_vars.tf +3 -0
- atlas_init/tf/modules/federated_vars/provider.tf +1 -1
- atlas_init/tf/modules/project_extra/project_extra.tf +15 -1
- atlas_init/tf/modules/stream_instance/stream_instance.tf +1 -1
- atlas_init/tf/modules/vpc_peering/vpc_peering.tf +1 -1
- atlas_init/tf/modules/vpc_privatelink/versions.tf +1 -1
- atlas_init/tf/outputs.tf +11 -3
- atlas_init/tf/providers.tf +2 -1
- atlas_init/tf/variables.tf +12 -0
- atlas_init/typer_app.py +76 -0
- {atlas_init-0.1.1.dist-info → atlas_init-0.1.4.dist-info}/METADATA +36 -18
- atlas_init-0.1.4.dist-info/RECORD +91 -0
- {atlas_init-0.1.1.dist-info → atlas_init-0.1.4.dist-info}/WHEEL +1 -1
- atlas_init-0.1.1.dist-info/RECORD +0 -62
- /atlas_init/tf/modules/aws_vpc/{aws-vpc.tf → aws_vpc.tf} +0 -0
- {atlas_init-0.1.1.dist-info → atlas_init-0.1.4.dist-info}/entry_points.txt +0 -0
@@ -35,6 +35,9 @@ output "env_vars" {
|
|
35
35
|
MONGODB_ATLAS_FEDERATION_SETTINGS_ID = var.federated_settings_id
|
36
36
|
MONGODB_ATLAS_FEDERATED_ORG_ID = var.org_id
|
37
37
|
MONGODB_ATLAS_FEDERATED_GROUP_ID = var.project_id
|
38
|
+
MONGODB_ATLAS_FEDERATED_IDP_ID = data.mongodbatlas_federated_settings_org_config.current.identity_provider_id # 20 character legacy needed for PATCH on org
|
39
|
+
# MONGODB_ATLAS_FEDERATED_IDP_ID = data.mongodbatlas_federated_settings_org_config.current.okta_idp_id # used for org PATCH
|
40
|
+
MONGODB_ATLAS_FEDERATED_SETTINGS_ASSOCIATED_DOMAIN = data.mongodbatlas_federated_settings_org_config.current.domain_allow_list[0]
|
38
41
|
}
|
39
42
|
|
40
43
|
}
|
@@ -2,7 +2,7 @@ terraform {
|
|
2
2
|
required_providers {
|
3
3
|
mongodbatlas = {
|
4
4
|
source = "mongodb/mongodbatlas"
|
5
|
-
version = "
|
5
|
+
version = "1.19.0"
|
6
6
|
}
|
7
7
|
}
|
8
8
|
}
|
@@ -35,9 +35,23 @@ resource "mongodbatlas_team" "project_team" {
|
|
35
35
|
usernames = [local.project_user_username]
|
36
36
|
}
|
37
37
|
|
38
|
+
resource "mongodbatlas_team" "project_team2" {
|
39
|
+
org_id = var.org_id
|
40
|
+
name = "tf-test-${var.id_suffix}"
|
41
|
+
usernames = [local.project_user_username]
|
42
|
+
}
|
43
|
+
|
44
|
+
resource "mongodbatlas_team" "project_team3" {
|
45
|
+
org_id = var.org_id
|
46
|
+
name = "tf-test2-${var.id_suffix}"
|
47
|
+
usernames = [local.project_user_username]
|
48
|
+
}
|
49
|
+
|
50
|
+
|
38
51
|
output "env_vars" {
|
39
52
|
value = {
|
40
53
|
MONGODB_ATLAS_TEAM_ID = mongodbatlas_team.project_team.team_id
|
54
|
+
MONGODB_ATLAS_TEAMS_IDS = join(",", [mongodbatlas_team.project_team.team_id, mongodbatlas_team.project_team2.team_id, mongodbatlas_team.project_team3.team_id])
|
41
55
|
MONGODB_ATLAS_ORG_API_KEY_ID = mongodbatlas_api_key.project_key.api_key_id
|
42
56
|
}
|
43
57
|
}
|
atlas_init/tf/outputs.tf
CHANGED
@@ -48,7 +48,9 @@ locals {
|
|
48
48
|
MCLI_ORG_ID = var.org_id
|
49
49
|
MCLI_SKIP_UPDATE_CHECK = "yes"
|
50
50
|
|
51
|
-
PROJECT_NAME
|
51
|
+
PROJECT_NAME = var.project_name
|
52
|
+
MONGODB_ATLAS_PROJECT_OWNER_ID = try(data.mongodbatlas_atlas_user.this[0].user_id, "")
|
53
|
+
|
52
54
|
# tf
|
53
55
|
TF_ACC = 1
|
54
56
|
AWS_ACCOUNT_ID = local.aws_account_id
|
@@ -61,7 +63,9 @@ locals {
|
|
61
63
|
|
62
64
|
output "links" {
|
63
65
|
value = {
|
64
|
-
org_url = "${var.atlas_base_url}v2#/org/${var.org_id}/projects"
|
66
|
+
org_url = "${trimsuffix(var.atlas_base_url, "/")}/v2#/org/${var.org_id}/projects"
|
67
|
+
# https://cloud.mongodb.com/v2/66ad0c5bae611a0fe4387767#/overview
|
68
|
+
project_url = "${trimsuffix(var.atlas_base_url, "/")}/v2/${mongodbatlas_project.project.id}#/overview"
|
65
69
|
}
|
66
70
|
}
|
67
71
|
|
@@ -101,4 +105,8 @@ output "last_provider_version" {
|
|
101
105
|
|
102
106
|
output "aws_account_id" {
|
103
107
|
value = local.aws_account_id
|
104
|
-
}
|
108
|
+
}
|
109
|
+
|
110
|
+
output "my_ip" {
|
111
|
+
value = var.use_project_myip ? chomp(data.http.myip[0].response_body) : null
|
112
|
+
}
|
atlas_init/tf/providers.tf
CHANGED
@@ -2,7 +2,7 @@ terraform {
|
|
2
2
|
required_providers {
|
3
3
|
mongodbatlas = {
|
4
4
|
source = "mongodb/mongodbatlas"
|
5
|
-
version = "1.
|
5
|
+
version = "1.19.0"
|
6
6
|
}
|
7
7
|
aws = {
|
8
8
|
source = "hashicorp/aws"
|
@@ -23,6 +23,7 @@ provider "mongodbatlas" {
|
|
23
23
|
public_key = var.atlas_public_key
|
24
24
|
private_key = var.atlas_private_key
|
25
25
|
base_url = var.atlas_base_url
|
26
|
+
# is_mongodbgov_cloud = var.is_mongodbgov_cloud the base_url takes preference in provider.go
|
26
27
|
}
|
27
28
|
provider "aws" {
|
28
29
|
region = var.aws_region
|
atlas_init/tf/variables.tf
CHANGED
@@ -11,6 +11,16 @@ variable "atlas_base_url" {
|
|
11
11
|
default = "https://cloud-dev.mongodb.com/"
|
12
12
|
}
|
13
13
|
|
14
|
+
variable "user_id" {
|
15
|
+
type = string
|
16
|
+
default = ""
|
17
|
+
}
|
18
|
+
|
19
|
+
variable "is_mongodbgov_cloud" {
|
20
|
+
type = bool
|
21
|
+
default = false
|
22
|
+
}
|
23
|
+
|
14
24
|
variable "federated_settings_id" {
|
15
25
|
type = string
|
16
26
|
default = ""
|
@@ -46,10 +56,12 @@ variable "cfn_config" {
|
|
46
56
|
type = object({
|
47
57
|
profile = string
|
48
58
|
region = string
|
59
|
+
use_kms_key = bool
|
49
60
|
})
|
50
61
|
default = {
|
51
62
|
profile = ""
|
52
63
|
region = "eu-west-1"
|
64
|
+
use_kms_key = false
|
53
65
|
}
|
54
66
|
}
|
55
67
|
|
atlas_init/typer_app.py
ADDED
@@ -0,0 +1,76 @@
|
|
1
|
+
import logging
|
2
|
+
import os
|
3
|
+
import sys
|
4
|
+
from functools import partial
|
5
|
+
|
6
|
+
import typer
|
7
|
+
|
8
|
+
from atlas_init import running_in_repo
|
9
|
+
from atlas_init.cli_cfn.app import app as app_cfn
|
10
|
+
from atlas_init.cli_tf.app import app as app_tf
|
11
|
+
from atlas_init.settings.env_vars import (
|
12
|
+
DEFAULT_PROFILE,
|
13
|
+
AtlasInitSettings,
|
14
|
+
as_env_var_name,
|
15
|
+
env_var_names,
|
16
|
+
)
|
17
|
+
from atlas_init.settings.rich_utils import configure_logging, hide_secrets
|
18
|
+
|
19
|
+
logger = logging.getLogger(__name__)
|
20
|
+
app = typer.Typer(name="atlas_init", invoke_without_command=True, no_args_is_help=True)
|
21
|
+
app.add_typer(app_cfn, name="cfn")
|
22
|
+
app.add_typer(app_tf, name="tf")
|
23
|
+
|
24
|
+
app_command = partial(
|
25
|
+
app.command,
|
26
|
+
context_settings={"allow_extra_args": True, "ignore_unknown_options": True},
|
27
|
+
)
|
28
|
+
|
29
|
+
|
30
|
+
def extra_root_commands():
|
31
|
+
from atlas_init.cli_root import trigger
|
32
|
+
|
33
|
+
assert trigger
|
34
|
+
|
35
|
+
|
36
|
+
@app.callback(invoke_without_command=True)
|
37
|
+
def main(
|
38
|
+
ctx: typer.Context,
|
39
|
+
log_level: str = typer.Option("INFO", help="use one of [INFO, WARNING, ERROR, CRITICAL]"),
|
40
|
+
profile: str = typer.Option(
|
41
|
+
DEFAULT_PROFILE,
|
42
|
+
"-p",
|
43
|
+
"--profile",
|
44
|
+
envvar=env_var_names("profile"),
|
45
|
+
help="used to load .env_manual, store terraform state and variables, and dump .env files.",
|
46
|
+
),
|
47
|
+
project_name: str = typer.Option(
|
48
|
+
"",
|
49
|
+
"--project",
|
50
|
+
envvar=env_var_names("project_name"),
|
51
|
+
help="atlas project name to create",
|
52
|
+
),
|
53
|
+
show_secrets: bool = typer.Option(False, help="show secrets in the logs"),
|
54
|
+
):
|
55
|
+
explicit_env_vars: dict[str, str] = {}
|
56
|
+
if project_name != "":
|
57
|
+
explicit_env_vars[as_env_var_name("project_name")] = project_name
|
58
|
+
log_handler = configure_logging(log_level)
|
59
|
+
logger.info(f"running in repo: {running_in_repo()} python location:{sys.executable}")
|
60
|
+
missing_env_vars, ambiguous_env_vars = AtlasInitSettings.check_env_vars(
|
61
|
+
profile,
|
62
|
+
required_extra_fields=["project_name"],
|
63
|
+
explicit_env_vars=explicit_env_vars,
|
64
|
+
)
|
65
|
+
if missing_env_vars:
|
66
|
+
typer.echo(f"missing env_vars: {missing_env_vars}")
|
67
|
+
if ambiguous_env_vars:
|
68
|
+
typer.echo(
|
69
|
+
f"amiguous env_vars: {missing_env_vars} (specified both in cli & in .env-manual file with different values)"
|
70
|
+
)
|
71
|
+
if missing_env_vars or ambiguous_env_vars:
|
72
|
+
raise typer.Exit(1)
|
73
|
+
if not show_secrets:
|
74
|
+
hide_secrets(log_handler, {**os.environ})
|
75
|
+
command = ctx.invoked_subcommand
|
76
|
+
logger.info(f"in the app callback, log-level: {log_level}, command: {command}")
|
@@ -1,21 +1,23 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: atlas-init
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.4
|
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
|
-
License
|
8
|
+
License: MIT
|
9
9
|
Classifier: Development Status :: 4 - Beta
|
10
10
|
Classifier: Programming Language :: Python
|
11
11
|
Classifier: Programming Language :: Python :: 3.12
|
12
12
|
Requires-Python: >=3.12
|
13
13
|
Requires-Dist: boto3==1.34.55
|
14
14
|
Requires-Dist: gitpython==3.1.42
|
15
|
+
Requires-Dist: humanize==4.9.0
|
15
16
|
Requires-Dist: model-lib==0.0.30
|
16
17
|
Requires-Dist: mypy-boto3-cloudformation==1.34.66
|
17
18
|
Requires-Dist: orjson==3.9.15
|
18
19
|
Requires-Dist: pydantic-settings==2.2.1
|
20
|
+
Requires-Dist: pygithub==2.3.0
|
19
21
|
Requires-Dist: requests==2.31.0
|
20
22
|
Requires-Dist: rich==13.7.1
|
21
23
|
Requires-Dist: stringcase==1.2.0
|
@@ -24,8 +26,20 @@ Requires-Dist: typer==0.12.0
|
|
24
26
|
Description-Content-Type: text/markdown
|
25
27
|
|
26
28
|
# Atlas Init - A CLI for developing integrations with MongoDB Atlas
|
27
|
-
|
28
|
-
|
29
|
+
<p align="center">
|
30
|
+
<a href="https://pypi.org/project/atlas-init/" target="_blank">
|
31
|
+
<img src="https://img.shields.io/pypi/v/atlas-init.svg">
|
32
|
+
</a>
|
33
|
+
<a href="https://pypi.org/project/atlas-init/" target="_blank">
|
34
|
+
<img src="https://img.shields.io/pypi/pyversions/atlas-init.svg">
|
35
|
+
</a>
|
36
|
+
<a href="https://github.com/EspenAlbert/py-libs/blob/main/LICENSE" target="_blank">
|
37
|
+
<img src="https://img.shields.io/badge/License-MIT-yellow.svg" alt="License">
|
38
|
+
</a>
|
39
|
+
<a href="https://codecov.io/github/EspenAlbert/atlas-init" target="_blank">
|
40
|
+
<img src="https://codecov.io/github/EspenAlbert/atlas-init/graph/badge.svg?token=DR7FDJXNZY" alt="Coverage">
|
41
|
+
</a>
|
42
|
+
</p>
|
29
43
|
|
30
44
|
Currently, used with
|
31
45
|
- <https://github.com/mongodb/terraform-provider-mongodbatlas>
|
@@ -39,28 +53,29 @@ Currently, used with
|
|
39
53
|
3. create directories and store a file in `profiles/default/.env-manual` (`ATLAS_INIT_PROFILES_PATH/{profile_name}/.env-manual`)
|
40
54
|
|
41
55
|
```env
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
56
|
+
AWS_PROFILE=REPLACE_ME # your AWS profile used to create resources or other env-vars supported by AWS TF provider
|
57
|
+
MONGODB_ATLAS_ORG_ID=REPLACE_ME # ORG_ID_IN_URL_FROM_1
|
58
|
+
MONGODB_ATLAS_PUBLIC_KEY=REPLACE_ME # with 2
|
59
|
+
MONGODB_ATLAS_PRIVATE_KEY=REPLACE_ME # with 2
|
60
|
+
ATLAS_INIT_PROJECT_NAME=YOUR_NAME # the name of the project
|
61
|
+
MONGODB_ATLAS_BASE_URL=https://cloud-dev.mongodb.com/ # replace with https://cloud.mongodb.com/ if you are not a MongoDB Employe
|
48
62
|
|
49
63
|
# optional
|
50
64
|
TF_VAR_federated_settings_id=REPLACE_ME # will need to add organization: <https://cloud-dev.mongodb.com/v2#/federation/{FEDERATION_SETTINGS_ID}/organizations> (see internal testing wiki)
|
51
65
|
|
52
66
|
# if you want to use your locally built MongoDB atlas provider
|
53
67
|
# see appendix for details on the content
|
54
|
-
|
68
|
+
TF_CLI_CONFIG_FILE=REPLACE_ME/dev.tfrc
|
55
69
|
|
56
70
|
# if you plan developing with cloudformation
|
57
|
-
|
58
|
-
|
71
|
+
ATLAS_INIT_CFN_PROFILE=YOUR_NAME
|
72
|
+
ATLAS_INIT_CFN_REGION=eu-south-2 # find a region with few other profiles
|
59
73
|
```
|
60
74
|
|
61
|
-
##
|
75
|
+
## Three modes of running
|
62
76
|
|
63
77
|
### 1. `pip install` normal user
|
78
|
+
|
64
79
|
```shell
|
65
80
|
source .venv/bin/activate # ensure you are in your preferred python env
|
66
81
|
(uv) pip install atlas-init
|
@@ -81,7 +96,7 @@ pre-commit install
|
|
81
96
|
# check that everything works
|
82
97
|
pre-commit run --all-files
|
83
98
|
|
84
|
-
# configure your virtualenv
|
99
|
+
# configure your virtualenv and validate the tests are working
|
85
100
|
cd py
|
86
101
|
hatch test
|
87
102
|
export VENV_DIR=$(hatch env find hatch-test | grep py3.12) # hatch venv path for env=hatch-test
|
@@ -92,10 +107,11 @@ cd .. # back to repo root
|
|
92
107
|
# open in your IDE with virtualenv enabled
|
93
108
|
code .
|
94
109
|
# select venv path from $VENV_PYTHON output as python interpreter
|
110
|
+
# in vs code: use cmd+p and `Python: select interpreter` command
|
95
111
|
|
96
|
-
# to make it easy to invoke from any terminal
|
97
|
-
export pypath=$(
|
98
|
-
echo "alias atlas_init='export PYTHONPATH=$pypath && \"$VENV_PYTHON\" -m atlas_init'" >> ~/.zprofile
|
112
|
+
# to make it easy to invoke from any terminal (replace .zprofile with your terminal)
|
113
|
+
export pypath=$(git rev-parse --show-toplevel)/py
|
114
|
+
echo "alias atlas_init='export PYTHONPATH=$pypath && \"$VENV_PYTHON\" -m atlas_init'" >> ~/.zprofile
|
99
115
|
|
100
116
|
# test that it works
|
101
117
|
atlas_init # should show how to use the cli
|
@@ -127,6 +143,7 @@ atals_init destroy # `terraform destroy`
|
|
127
143
|
|
128
144
|
### Configuring vscode to use your env vars
|
129
145
|
- add to your `settings.json`
|
146
|
+
|
130
147
|
```json
|
131
148
|
{
|
132
149
|
"go.testEnvFile": "/{SOME_PREFIX}/atlas-init/profiles/default/.env-vscode",
|
@@ -152,6 +169,7 @@ provider_installation {
|
|
152
169
|
```
|
153
170
|
|
154
171
|
### Re-generating the lock files
|
172
|
+
|
155
173
|
```shell
|
156
174
|
terraform providers lock \
|
157
175
|
-platform=darwin_amd64 \
|
@@ -0,0 +1,91 @@
|
|
1
|
+
atlas_init/__init__.py,sha256=xD4IVHcbqZz_0_T3O_qEZpsHNAo0ybtN2ktKp5eB3OE,372
|
2
|
+
atlas_init/__main__.py,sha256=dY1dWWvwxRZMmnOFla6RSfti-hMeLeKdoXP7SVYqMUc,52
|
3
|
+
atlas_init/atlas_init.yaml,sha256=GMyJVhKKRc7WzEu7fafmWgeTsDaExTLv7QvXOmE_Brg,1907
|
4
|
+
atlas_init/cli.py,sha256=IiOEC_Jry6vrSDH3_OvsU50F-_3iVIS4tV6-R7659fY,9642
|
5
|
+
atlas_init/cli_args.py,sha256=6ucjRGLGde1XcZIfUCGrWbmQLJB9bWZaXxyAsYXMSSw,427
|
6
|
+
atlas_init/humps.py,sha256=l0ZXXuI34wwd9TskXhCjULfGbUyK-qNmiyC6_2ow6kU,7339
|
7
|
+
atlas_init/terraform.yaml,sha256=qPrnbzBEP-JAQVkYadHsggRnDmshrOJyiv0ckyZCxwY,2734
|
8
|
+
atlas_init/typer_app.py,sha256=irgBK7WSewg7on25KKHY9FNUDvmXgavmc0Z39yhYNjI,2507
|
9
|
+
atlas_init/cli_cfn/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
10
|
+
atlas_init/cli_cfn/app.py,sha256=iMukpUDgsAgZh_U_APGZB3gmewOo-3vtFK0byJuDz9w,6649
|
11
|
+
atlas_init/cli_cfn/aws.py,sha256=GbohR7uczSGwQjLEYozCmlxbeIHo1uwQIJMwsh7kF7M,17894
|
12
|
+
atlas_init/cli_cfn/cfn_parameter_finder.py,sha256=tAadNF1M_U2BTY-m9fXVXFXNQRvfudOja97jT3AiVaI,10811
|
13
|
+
atlas_init/cli_cfn/example.py,sha256=pQNpFreuv58O3lanLy5Kunp8GxG8i9PWjuWsYlpv2tg,8320
|
14
|
+
atlas_init/cli_cfn/files.py,sha256=vjop9G8rGMgyRe4fX5eWNX5H-YGAmk-fNUqUGErI7xg,1720
|
15
|
+
atlas_init/cli_helper/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
16
|
+
atlas_init/cli_helper/go.py,sha256=LVMXTWvEYOHOul_UG5uQT3QAoL0H1f1O7e4d-11kPrw,1232
|
17
|
+
atlas_init/cli_helper/run.py,sha256=LvzOXFBotGZQ7KZjivr4e7Aq8AUnxy7vGpH1rluSAN8,2988
|
18
|
+
atlas_init/cli_helper/sdk.py,sha256=exh58-VZwxtosaxM269C62EEy1VnpJPOVziPDPkGsmE,2983
|
19
|
+
atlas_init/cli_helper/sdk_auto_changes.py,sha256=oWyXw7P0PdO28hclRvza_RcIVXAyzu0lCYTJTNBDMeo,189
|
20
|
+
atlas_init/cli_helper/tf_runner.py,sha256=OYdC-Y6i-xRh8_LCudKdtP7CEYEO9e67nVhholN29eg,3636
|
21
|
+
atlas_init/cli_root/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
22
|
+
atlas_init/cli_root/trigger.py,sha256=oEgqb_l25tyYgUaFHEuChcOCJA7k3mnRa4D-Myz-Igs,5789
|
23
|
+
atlas_init/cli_tf/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
24
|
+
atlas_init/cli_tf/app.py,sha256=2lrlbuXPSfgL_k4BeZ4jiWNkRuSemCp5xle1yxCiU4I,11255
|
25
|
+
atlas_init/cli_tf/changelog.py,sha256=biWYKf1pZvXZ-jEgcZ5q9sY7nTGrL2PuI0h9mCILf_g,3181
|
26
|
+
atlas_init/cli_tf/debug_logs.py,sha256=J8MLryNNkRivo2-Z3fnqf5pjPit9xndbsqNSbATTtUg,8047
|
27
|
+
atlas_init/cli_tf/debug_logs_test_data.py,sha256=AOysldCVSBtqW8ZhRnxcOPctng9OodQy0zWWcYbmpoA,8577
|
28
|
+
atlas_init/cli_tf/github_logs.py,sha256=VD7qhlXNuG21eTuJ5VI7rsflp5WHSodfngkRVgQlumw,8114
|
29
|
+
atlas_init/cli_tf/go_test_run.py,sha256=ZoQSvIasmWauFxZJrWL0ObFX-P0k-D3c_ep3OnPY4zs,5842
|
30
|
+
atlas_init/cli_tf/go_test_run_format.py,sha256=OUd6QPHDeTzbwVuh6MhP-xXgjOOGP9W_sCLJ8KylBTs,1201
|
31
|
+
atlas_init/cli_tf/go_test_summary.py,sha256=agr4SITgxchjgOzRpScoTUk-iG38QDLkpnsMtTW9GTY,5382
|
32
|
+
atlas_init/cli_tf/schema.py,sha256=q0RUHb-6ORbQ41u2bZXaWWQLB-xE8Q_O7U1AFq2Gfng,12398
|
33
|
+
atlas_init/cli_tf/schema_go_parser.py,sha256=PiRfFFVnkhltxcGFfOCgH53wwzIEynw2BXmSfaINLL8,8294
|
34
|
+
atlas_init/cli_tf/schema_inspection.py,sha256=ujLvGfg3baByND4nRD0drZoI45STxo3VfYvim-PfVOc,1764
|
35
|
+
atlas_init/cli_tf/schema_table.py,sha256=1i6urBFNVpyopmLbDkYhL3pceKc9NJBCphfVIbm-K6Y,5229
|
36
|
+
atlas_init/cli_tf/schema_table_models.py,sha256=9gS3gYris0MjEWsY_gbLWcZwJokCUJS1TcVXnq7w5SA,5003
|
37
|
+
atlas_init/cli_tf/schema_v2.py,sha256=NtVW3lPKxHtCMBEwo9zThARpy9oQRbsKd0NrhymAyyE,21960
|
38
|
+
atlas_init/cli_tf/schema_v2_api_parsing.py,sha256=8XtwHNU84VPMATD3CbE-TLeVlgxqZggxY5QQ5YjhX4w,12888
|
39
|
+
atlas_init/cli_tf/schema_v2_sdk.py,sha256=AsAERT18FC97Gdb8r-qFInr4pSA15IGMUvCn-065XGE,12630
|
40
|
+
atlas_init/cli_tf/schema_v3.py,sha256=f0m1VoCVukIqyfMee1K-11GfWv_AIKoI4mRAMBYa17k,5769
|
41
|
+
atlas_init/cli_tf/schema_v3_sdk.py,sha256=5RWbhqKT8jEGgJrQaaT7xTRToviIzZZOxuJO5MNLYwo,9929
|
42
|
+
atlas_init/cli_tf/schema_v3_sdk_base.py,sha256=oe7WRZc0R_UYP5Yry4kDAMxOKAUHvQrc9bIdjfLshYk,2131
|
43
|
+
atlas_init/cli_tf/schema_v3_sdk_create.py,sha256=64AluGbQP47RRdY6Cz4KZRN9DdQISW5lLxQ-E1od5dc,8342
|
44
|
+
atlas_init/cli_tf/hcl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
45
|
+
atlas_init/cli_tf/hcl/cli.py,sha256=6V1kU_a1c4LA3rS7sWN821gQex00fb70AUyd07xO0es,5760
|
46
|
+
atlas_init/cli_tf/hcl/cluster_mig.py,sha256=kMb_0V_XWr_iQj-mZZ-mmzIvYOLfuC4FYGYYSe9VKkQ,12496
|
47
|
+
atlas_init/cli_tf/hcl/parser.py,sha256=NVe55u386U7YSKdT8ZCJ-rPV7O3BgNoyZ_bHsjxGYjQ,4814
|
48
|
+
atlas_init/cloud/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
49
|
+
atlas_init/cloud/aws.py,sha256=97kkURWHFAKDIw4704aFmyoeAfQKL11IXMyaQbZUt80,2473
|
50
|
+
atlas_init/repos/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
51
|
+
atlas_init/repos/cfn.py,sha256=rjyVVxRhWL65tdAbEHT72UReK2h99Bj6RA4O2pBO-bc,2466
|
52
|
+
atlas_init/repos/go_sdk.py,sha256=6_ENYMP6yQufo1dXJbLJFDxCuq-8oeTYiGAPC61Uauc,424
|
53
|
+
atlas_init/repos/path.py,sha256=wrT8e01OBoAHj8iMrxqutgqWu-BHPe9-bEWtcZRu238,4187
|
54
|
+
atlas_init/settings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
55
|
+
atlas_init/settings/config.py,sha256=HIytZom8RRvpLGy6u8CpZ83tmFXI6v1tO3iSiuo08kc,6259
|
56
|
+
atlas_init/settings/env_vars.py,sha256=B81u9QhWTnkKL6Uzq5KKyJHB8J5btrl-ZBuPAdXUX1A,9146
|
57
|
+
atlas_init/settings/interactive.py,sha256=Xy1Z5WMAOSaJ-vQI_4xjAbSR92rWQgnffwVoDT27L68,340
|
58
|
+
atlas_init/settings/path.py,sha256=rsDeutRlyFkU9ICoRogDdwe8PqryALyyVCJ_0Ssn1ZI,2367
|
59
|
+
atlas_init/settings/rich_utils.py,sha256=fkxd2oKZlVb0dFFcQlJEx7CtxSDUgudjeydVOPDLX5o,1665
|
60
|
+
atlas_init/tf/.terraform.lock.hcl,sha256=DIojR50rr4fyLShYiQ-UpRV8z6vuBjwGWdK60FODoyM,6876
|
61
|
+
atlas_init/tf/always.tf,sha256=ij6QKI8Lg0140bFZwOyiYK5c-2p5e7AGZ1qKbYyv6Os,1359
|
62
|
+
atlas_init/tf/main.tf,sha256=DH0C8y9RDEHnSAZvL-TjE5MQjxj5ALfgk5zVO88cpZw,3960
|
63
|
+
atlas_init/tf/outputs.tf,sha256=Jd1n-rNt0cv-tqXEXaFxJQE7poR_T7FAKEVuhAJd3aE,3857
|
64
|
+
atlas_init/tf/providers.tf,sha256=ayfaz4nekzWzUuH56lZzrJTX1025Wej-xzt0Yi80Uh8,819
|
65
|
+
atlas_init/tf/variables.tf,sha256=2Ioy8O3WZrctndroiyO0D5JQJm2YF5-AMpThJQw75kM,2095
|
66
|
+
atlas_init/tf/modules/aws_s3/aws_s3.tf,sha256=SP5vZf5Y2g9Z5yWpBKSKzEEF5FITPycoGKe-kaHoVCI,738
|
67
|
+
atlas_init/tf/modules/aws_s3/provider.tf,sha256=RmUmMzMfOT5LZIWYqxM2EgtkI7JWqZfj3p3TxZkZoLk,161
|
68
|
+
atlas_init/tf/modules/aws_vars/aws_vars.tf,sha256=0SItDIZUWQCpw4o0y2jZjUY1LnUeUdAL2wOjng3GDtc,508
|
69
|
+
atlas_init/tf/modules/aws_vpc/aws_vpc.tf,sha256=TnWyDFLHi_aYEnqRCNLDjQmCSUPA0x_4A9fCvXL0vO0,1838
|
70
|
+
atlas_init/tf/modules/aws_vpc/provider.tf,sha256=0c2_hW9dSnwbK_1xdD4iSLiD6PACneBx5rEW06uWYlM,210
|
71
|
+
atlas_init/tf/modules/cfn/assume_role_services.yaml,sha256=Sv-FPsLeZ0K_3x0Eq5iJcf7yGe5ax8I0uqzvUlMZDOY,94
|
72
|
+
atlas_init/tf/modules/cfn/cfn.tf,sha256=53zvs0pm_dosX1U666su2FI4fH7CbbelXkgXdN0l8O4,3020
|
73
|
+
atlas_init/tf/modules/cfn/kms.tf,sha256=W-HfFbQ2J1GQC279Ou-PLq4huf0mGn235BCEgO7n9aI,1635
|
74
|
+
atlas_init/tf/modules/cfn/resource_actions.yaml,sha256=rPQZ46YiN-PnpY91hDPOFJgZtlAiyIiyVE3P9yvo50o,540
|
75
|
+
atlas_init/tf/modules/cfn/variables.tf,sha256=qbYffl4ly0K8IRTwG3P7-Yyzm5OBTVRZCmDP69WMp44,379
|
76
|
+
atlas_init/tf/modules/cloud_provider/cloud_provider.tf,sha256=FWExSFKOX239XQaG1AFIRZHQij5NM6sjAWCm3xGDFsQ,1281
|
77
|
+
atlas_init/tf/modules/cloud_provider/provider.tf,sha256=IDpMSLO3GjkxCvF-4qdHugxYq_w-Epujr51HZf_xB0Y,237
|
78
|
+
atlas_init/tf/modules/cluster/cluster.tf,sha256=TId4JsmSDlSHtIzmo3p4GKUVRhzZK9eoiI7DmoYgdq0,3041
|
79
|
+
atlas_init/tf/modules/cluster/provider.tf,sha256=RmUmMzMfOT5LZIWYqxM2EgtkI7JWqZfj3p3TxZkZoLk,161
|
80
|
+
atlas_init/tf/modules/federated_vars/federated_vars.tf,sha256=YTrvDFCHpxwSeoiCOQRB1GdktH3OxFkUVsFYvLhwG2o,1238
|
81
|
+
atlas_init/tf/modules/federated_vars/provider.tf,sha256=RmUmMzMfOT5LZIWYqxM2EgtkI7JWqZfj3p3TxZkZoLk,161
|
82
|
+
atlas_init/tf/modules/project_extra/project_extra.tf,sha256=YkMFLYuAmWd-Hn3afgN3qhdppRLOEL6sStfEN5dOxcc,1512
|
83
|
+
atlas_init/tf/modules/stream_instance/stream_instance.tf,sha256=amajQaIItGgm9YYBPO-h6tLH2E6n8IXPzer2yNx-0Cw,610
|
84
|
+
atlas_init/tf/modules/vpc_peering/vpc_peering.tf,sha256=hJ3KJdGbLpOQednUpVuiJ0CqmUgtfNZrLUGjW4os224,2207
|
85
|
+
atlas_init/tf/modules/vpc_privatelink/atlas-privatelink.tf,sha256=FloaaX1MNDvoMZxBnEopeLKyfIlq6kaX2dmx8WWlXNU,1298
|
86
|
+
atlas_init/tf/modules/vpc_privatelink/variables.tf,sha256=gktHCDYD4rz6CEpLg5aiXcFbugw4L5S2Fqc52QYdJyc,255
|
87
|
+
atlas_init/tf/modules/vpc_privatelink/versions.tf,sha256=G0u5V_Hvvrkux_tqfOY05pA-GzSp_qILpfx1dZaTGDc,237
|
88
|
+
atlas_init-0.1.4.dist-info/METADATA,sha256=ieOVcXrBAAxyEVYz76tbrsqDktFvr3uaXJiATbhsgvk,6167
|
89
|
+
atlas_init-0.1.4.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
90
|
+
atlas_init-0.1.4.dist-info/entry_points.txt,sha256=6Ycq_NZ7cym1BCA9YiVhYylJzy6woREjt7QSCSLm-1o,54
|
91
|
+
atlas_init-0.1.4.dist-info/RECORD,,
|
@@ -1,62 +0,0 @@
|
|
1
|
-
atlas_init/__init__.py,sha256=nxYhj4r6g5B1cOn6xF2mSn99hp8VxU4lXIg4funFVnc,376
|
2
|
-
atlas_init/__main__.py,sha256=dY1dWWvwxRZMmnOFla6RSfti-hMeLeKdoXP7SVYqMUc,52
|
3
|
-
atlas_init/atlas_init.yaml,sha256=qC4zHwmqm6ui9VuAwE3tYrIFDklQ0Gm1Sh9il2l2WdQ,1518
|
4
|
-
atlas_init/cli.py,sha256=FbSCjKikTAOrrxyA5cPqqIcEK5hHy4y4pBw6AO46AkM,9639
|
5
|
-
atlas_init/cli_args.py,sha256=6ucjRGLGde1XcZIfUCGrWbmQLJB9bWZaXxyAsYXMSSw,427
|
6
|
-
atlas_init/terraform.yaml,sha256=5Cxaru1FpnSJqHKRZ7j8YDhMV4h50e3iiahBz3eWlD0,726
|
7
|
-
atlas_init/cli_cfn/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
8
|
-
atlas_init/cli_cfn/app.py,sha256=6Y_KZ5WH_sOr24AO-7JdwrVsAdGXy5grUE575uIs30U,9857
|
9
|
-
atlas_init/cli_cfn/cfn.py,sha256=87G3VpMWmus7pY06rWu_s3lFPAJeYn85I43dH5w0cDQ,12492
|
10
|
-
atlas_init/cli_cfn/cfn_parameter_finder.py,sha256=QFlLrWh0g4HwGAlK_M9OmhG61mTtxIBGzSx1VgDSMfs,7441
|
11
|
-
atlas_init/cli_helper/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
12
|
-
atlas_init/cli_helper/go.py,sha256=LVMXTWvEYOHOul_UG5uQT3QAoL0H1f1O7e4d-11kPrw,1232
|
13
|
-
atlas_init/cli_helper/run.py,sha256=NEjFP1yttPe3Sg9JFnDbRreEWProb-plvKwomBsQz8w,2517
|
14
|
-
atlas_init/cli_helper/sdk.py,sha256=exh58-VZwxtosaxM269C62EEy1VnpJPOVziPDPkGsmE,2983
|
15
|
-
atlas_init/cli_helper/sdk_auto_changes.py,sha256=oWyXw7P0PdO28hclRvza_RcIVXAyzu0lCYTJTNBDMeo,189
|
16
|
-
atlas_init/cli_helper/tf_runner.py,sha256=vNi8f34LJZkPnvZZnB2MMyfTVMBPwS_1nrD-stO0-iM,3690
|
17
|
-
atlas_init/cli_tf/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
18
|
-
atlas_init/cli_tf/app.py,sha256=Xspc5qp3f4Uir5hgxcF3DaFg28ld1iWARtbhfq7uI04,2644
|
19
|
-
atlas_init/cli_tf/schema.py,sha256=AFALXAju4OBVZQ8T9REtoench6HKmQ88bmmzHC_BxII,3258
|
20
|
-
atlas_init/cli_tf/schema_inspection.py,sha256=ujLvGfg3baByND4nRD0drZoI45STxo3VfYvim-PfVOc,1764
|
21
|
-
atlas_init/cloud/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
22
|
-
atlas_init/cloud/aws.py,sha256=97kkURWHFAKDIw4704aFmyoeAfQKL11IXMyaQbZUt80,2473
|
23
|
-
atlas_init/repos/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
24
|
-
atlas_init/repos/cfn.py,sha256=zSrQ_csdh5HsO7Yoc_bC65j9SMsiSYEhd_0ug8gAIb8,2279
|
25
|
-
atlas_init/repos/go_sdk.py,sha256=6_ENYMP6yQufo1dXJbLJFDxCuq-8oeTYiGAPC61Uauc,424
|
26
|
-
atlas_init/repos/path.py,sha256=N1VdelcMb2YuNbdoZtyL9ChuFEu7Kz4VwOIV7eefzTE,4160
|
27
|
-
atlas_init/settings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
28
|
-
atlas_init/settings/config.py,sha256=eg1KfDRAbJezpaVTaPYKlteTnzNRm189ZMhg2WPbE9Y,5894
|
29
|
-
atlas_init/settings/env_vars.py,sha256=OReAsZ7M4fUZrqSeEoPqizjeRXhEyCpZtB7nqYHdnmY,8745
|
30
|
-
atlas_init/settings/interactive.py,sha256=Xy1Z5WMAOSaJ-vQI_4xjAbSR92rWQgnffwVoDT27L68,340
|
31
|
-
atlas_init/settings/path.py,sha256=Dbp-C8Cr5Q7E-QSpY6_Pe30nNx_e8hT_RYzKn-3fCO4,1998
|
32
|
-
atlas_init/settings/rich_utils.py,sha256=J75-LGMtGwUAkCwCtjU2DyOeesiFB7rKP54NPb_6UmA,1601
|
33
|
-
atlas_init/tf/.terraform.lock.hcl,sha256=wyL4o4Hy1L_9M3U7tXqdZC4OX0uHypCv4MQqZKaeZEI,8206
|
34
|
-
atlas_init/tf/always.tf,sha256=dYd7JfxLpeE3sl2jUtbSb6CVya4EuIx9IeFqyE4zCL0,1102
|
35
|
-
atlas_init/tf/main.tf,sha256=0ZH1QiBPmE1rQQoOookddfWoNJZLzoQDZPrtGKhkT6c,3824
|
36
|
-
atlas_init/tf/outputs.tf,sha256=z5VtLuUia4GPzx3Kw0ECUW68Az0p_zvE8PVtZwPfx4w,3452
|
37
|
-
atlas_init/tf/providers.tf,sha256=aBRwlUPQctHMFkFvrXs43Iq9b1og1wo0uSTsbKVt7_g,724
|
38
|
-
atlas_init/tf/variables.tf,sha256=-sW-2lNJD2sOIAodUsN-6SKkLIbznOGYVKVYcxsvPQw,1925
|
39
|
-
atlas_init/tf/modules/aws_s3/aws_s3.tf,sha256=SP5vZf5Y2g9Z5yWpBKSKzEEF5FITPycoGKe-kaHoVCI,738
|
40
|
-
atlas_init/tf/modules/aws_s3/provider.tf,sha256=MokTWfkT2IPWfIgGbKcX-UC_PycO9TzjZDOeFA9PLRM,162
|
41
|
-
atlas_init/tf/modules/aws_vars/aws_vars.tf,sha256=VcVOIt-VCu2UdGddN6SjLkavLl-JGex64RnSEIZhWpw,386
|
42
|
-
atlas_init/tf/modules/aws_vpc/aws-vpc.tf,sha256=TnWyDFLHi_aYEnqRCNLDjQmCSUPA0x_4A9fCvXL0vO0,1838
|
43
|
-
atlas_init/tf/modules/aws_vpc/provider.tf,sha256=MokTWfkT2IPWfIgGbKcX-UC_PycO9TzjZDOeFA9PLRM,162
|
44
|
-
atlas_init/tf/modules/cfn/assume_role_services.yaml,sha256=Sv-FPsLeZ0K_3x0Eq5iJcf7yGe5ax8I0uqzvUlMZDOY,94
|
45
|
-
atlas_init/tf/modules/cfn/cfn.tf,sha256=TitYcubYIC4m4cRfGlZXrKH5hhJSR6ot9F9hesR75bM,2065
|
46
|
-
atlas_init/tf/modules/cfn/resource_actions.yaml,sha256=qkKTE6V2vc0JEvGkS59doCqzRZ2_IlBSV04ymQC4tK8,511
|
47
|
-
atlas_init/tf/modules/cloud_provider/cloud_provider.tf,sha256=q-8UBdj5U-nm-qoq2Y-QZ2ARp93bbZUKeuoA0saVmCQ,1232
|
48
|
-
atlas_init/tf/modules/cloud_provider/provider.tf,sha256=1Pd8zYQFkXI_EGe_Vj80IOx0Al9Cb9F22edhZj70Gy8,238
|
49
|
-
atlas_init/tf/modules/cluster/cluster.tf,sha256=XEOCeaTYcEeDrils68roiET49p3bI8uPfCcjhR_VnxQ,2828
|
50
|
-
atlas_init/tf/modules/cluster/provider.tf,sha256=MokTWfkT2IPWfIgGbKcX-UC_PycO9TzjZDOeFA9PLRM,162
|
51
|
-
atlas_init/tf/modules/federated_vars/federated_vars.tf,sha256=xJl54p14WSGIpGt0SdCAC8F3xRI0Fhwb3sSChFxKNd8,816
|
52
|
-
atlas_init/tf/modules/federated_vars/provider.tf,sha256=MokTWfkT2IPWfIgGbKcX-UC_PycO9TzjZDOeFA9PLRM,162
|
53
|
-
atlas_init/tf/modules/project_extra/project_extra.tf,sha256=MtF1W9MqyNcIx0KobOujQJ1MsK6r9cPcATAo-aqd62I,1020
|
54
|
-
atlas_init/tf/modules/stream_instance/stream_instance.tf,sha256=4HrGfB9ZZZ0BJKwhKINyEmQmqW1FUdgPJBbs8zGWEeE,611
|
55
|
-
atlas_init/tf/modules/vpc_peering/vpc_peering.tf,sha256=sRmteM23eTQcrTFLjaxeGTXStOBZQvPpRCIvtVAd8dE,2208
|
56
|
-
atlas_init/tf/modules/vpc_privatelink/atlas-privatelink.tf,sha256=FloaaX1MNDvoMZxBnEopeLKyfIlq6kaX2dmx8WWlXNU,1298
|
57
|
-
atlas_init/tf/modules/vpc_privatelink/variables.tf,sha256=gktHCDYD4rz6CEpLg5aiXcFbugw4L5S2Fqc52QYdJyc,255
|
58
|
-
atlas_init/tf/modules/vpc_privatelink/versions.tf,sha256=GlmYD7fOBe4cbILEXX9UjIr1rJKLIaqL_cDGc2u6upg,238
|
59
|
-
atlas_init-0.1.1.dist-info/METADATA,sha256=Qo8FMgBaZ37BEKYxVvcTQ-FlJ0h96oIOs38nn05wJoI,5504
|
60
|
-
atlas_init-0.1.1.dist-info/WHEEL,sha256=zEMcRr9Kr03x1ozGwg5v9NQBKn3kndp6LSoSlVg-jhU,87
|
61
|
-
atlas_init-0.1.1.dist-info/entry_points.txt,sha256=6Ycq_NZ7cym1BCA9YiVhYylJzy6woREjt7QSCSLm-1o,54
|
62
|
-
atlas_init-0.1.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|