Skip to content

Commit 23a21ea

Browse files
committed
Revert "optimizing artifacts size"
This reverts commit c997e65.
1 parent c997e65 commit 23a21ea

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

.gitlab-ci.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -67,15 +67,12 @@ install:
6767
stage: install
6868
script:
6969
- echo "Setting up Python virtual environment"
70-
- python3 -m venv --system-site-packages .venv
70+
- python3 -m venv .venv
7171
- source .venv/bin/activate
7272
- echo "Upgrading pip"
7373
- pip install --upgrade pip
7474
- echo "Installing Python dependencies"
75-
- pip install --no-cache-dir -r requirements.txt
76-
- find .venv -type d -name '__pycache__' -exec rm -rf {} +
77-
- find .venv -type d -name 'tests' -exec rm -rf {} +
78-
- find .venv -type d -name '*.dist-info' -exec rm -rf {} +
75+
- pip install -r requirements.txt
7976
- echo "Verifying Pulumi installation"
8077
- python -c "import pulumi; print('Pulumi version:', pulumi._version)"
8178
- echo "Dependencies installed successfully"

__main__.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,8 @@
1414
zone_id=cloudflare_config.get("zoneId"),
1515
name="example",
1616
type="A",
17-
content="192.0.2.1",
18-
ttl=1, # Auto TTL
19-
proxied=True,
17+
value="192.0.2.1",
18+
ttl=3600,
2019
comment="Managed by Pulumi",
2120
opts=pulumi.ResourceOptions(provider=cloudflare_provider)
2221
)

0 commit comments

Comments
 (0)