File tree Expand file tree Collapse file tree 2 files changed +4
-8
lines changed Expand file tree Collapse file tree 2 files changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -67,15 +67,12 @@ install:
67
67
stage : install
68
68
script :
69
69
- echo "Setting up Python virtual environment"
70
- - python3 -m venv --system-site-packages .venv
70
+ - python3 -m venv .venv
71
71
- source .venv/bin/activate
72
72
- echo "Upgrading pip"
73
73
- pip install --upgrade pip
74
74
- 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
79
76
- echo "Verifying Pulumi installation"
80
77
- python -c "import pulumi; print('Pulumi version:', pulumi._version)"
81
78
- echo "Dependencies installed successfully"
Original file line number Diff line number Diff line change 14
14
zone_id = cloudflare_config .get ("zoneId" ),
15
15
name = "example" ,
16
16
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 ,
20
19
comment = "Managed by Pulumi" ,
21
20
opts = pulumi .ResourceOptions (provider = cloudflare_provider )
22
21
)
You can’t perform that action at this time.
0 commit comments