Canister Settings Reference
Complete reference for all canister settings available in icp-cli.
Canister settings control resource allocation, behavior, and runtime configuration. They can be specified:
- At the canister level in
icp.yamlorcanister.yaml - At the environment level to override per-environment
Settings
compute_allocation
Guaranteed percentage of compute capacity.
| Property | Value |
|---|---|
| Type | Integer |
| Range | 0-100 |
| Default | 0 (best effort) |
settings: compute_allocation: 10Higher values guarantee more compute but cost more cycles.
memory_allocation
Fixed memory reservation.
| Property | Value |
|---|---|
| Type | Integer or string with suffix |
| Unit | Bytes (accepts suffixes) |
| Default | Dynamic allocation |
settings: memory_allocation: 4gibMemory values accept suffixes: kb (1,000), kib (1,024), mb (1,000,000), mib (1,048,576), gb (1,000,000,000), gib (1,073,741,824). Decimals are supported (e.g. 2.5gib). Raw byte counts are also accepted.
If not set, the canister uses dynamic memory allocation.
freezing_threshold
Time before the canister freezes due to low cycles.
| Property | Value |
|---|---|
| Type | Integer or string with duration suffix |
| Unit | Seconds (accepts duration suffixes) |
| Default | 2,592,000 seconds (30 days) |
settings: freezing_threshold: 90dDuration values accept suffixes: s (seconds), m (minutes), h (hours), d (days), w (weeks). Underscores are supported in the numeric part (e.g. 2_592_000). A bare number is treated as seconds. Raw second counts are also accepted for backwards compatibility.
The canister freezes if its cycles balance would be exhausted within this threshold.
reserved_cycles_limit
Upper limit on cycles reserved for future resource payments. When a canister allocates new storage on a subnet above 750 GiB usage, cycles are moved from its main balance into a reserved balance to pre-pay for future storage costs. This setting caps that reserved balance — memory allocations that would push it above the limit will fail. Set to 0 to disable resource reservation entirely (prevents memory allocation on subnets above 750 GiB).
| Property | Value |
|---|---|
| Type | Integer or string with suffix |
| Unit | Cycles (accepts suffixes) |
| IC Default | 5,000,000,000,000 (5T) |
settings: reserved_cycles_limit: 1tCycles values accept suffixes: k (thousand), m (million), b (billion), t (trillion). Decimals and underscores are supported (e.g. 1.5t, 500_000). Raw integers are also accepted.
wasm_memory_limit
Maximum heap size for the WASM module.
| Property | Value |
|---|---|
| Type | Integer or string with suffix |
| Unit | Bytes (accepts suffixes) |
| Default | Platform default |
settings: wasm_memory_limit: 1gibwasm_memory_threshold
Memory threshold that triggers low-memory callbacks.
| Property | Value |
|---|---|
| Type | Integer or string with suffix |
| Unit | Bytes (accepts suffixes) |
| Default | None |
settings: wasm_memory_threshold: 512miblog_memory_limit
Maximum memory for storing canister logs. Oldest logs are purged when usage exceeds this limit.
| Property | Value |
|---|---|
| Type | Integer or string with suffix |
| Unit | Bytes (accepts suffixes) |
| Max | 2 MiB |
| Default | 4096 bytes |
settings: log_memory_limit: 2mibMemory values accept suffixes: kb (1,000), kib (1,024), mb (1,000,000), mib (1,048,576). Raw byte counts are also accepted.
log_visibility
Controls who can read canister logs.
| Property | Value |
|---|---|
| Type | String or Object |
| Values | controllers, public, or allowed_viewers object |
| Default | controllers |
# Only controllers can view logs (default)settings: log_visibility: controllers
# Anyone can view logssettings: log_visibility: public
# Specific principals can view logssettings: log_visibility: allowed_viewers: - "aaaaa-aa" - "2vxsx-fae"environment_variables
Runtime environment variables accessible to the canister.
| Property | Value |
|---|---|
| Type | Object (string keys; values are strings or { path: <file> }) |
| Default | None |
settings: environment_variables: API_URL: "https://api.example.com" DEBUG: "false" FEATURE_FLAGS: "advanced=true"Environment variables allow the same WASM to run with different configurations.
Values from a file
A value can be read from a file instead of being written inline, which keeps values you would rather not commit — or that another tool generates — out of the manifest:
settings: environment_variables: API_URL: "https://api.example.com" API_KEY: path: ./secrets/api-keyThe path is relative to the canister’s own directory — the directory holding its
canister.yaml, or the project directory for a canister declared inline in
icp.yaml. An environment override resolves against
that same directory, not against the manifest declaring the override, so a path
means the same thing wherever it is written. This matches how an init_args
override resolves its path.
Surrounding whitespace is trimmed off the file’s contents, so a trailing newline does not become part of the value.
The file is read when the project is loaded, so a missing or unreadable file
fails the command before anything is deployed. icp project bundle reads the file
and writes the value into the bundled manifest inline — the file itself does not
travel with the bundle, and a file outside the project is rejected rather than
bundled.
Full Example
canisters: - name: backend build: steps: - type: script commands: - cargo build --target wasm32-unknown-unknown --release - cp target/wasm32-unknown-unknown/release/backend.wasm "$ICP_WASM_OUTPUT_PATH" settings: compute_allocation: 5 memory_allocation: 2gib freezing_threshold: 30d reserved_cycles_limit: 5t wasm_memory_limit: 1gib wasm_memory_threshold: 512mib log_visibility: controllers log_memory_limit: 2mib environment_variables: ENV: "production" API_BASE_URL: "https://api.example.com"Environment Overrides
Override settings per environment:
canisters: - name: backend settings: compute_allocation: 1 # Default
environments: - name: production network: mainnet canisters: [backend] settings: backend: compute_allocation: 20 # Production override freezing_threshold: 90d environment_variables: ENV: "production" API_KEY: path: ./secrets/production-api-keyFile references inside an override — environment_variables values and
init_args alike — resolve against the referenced canister’s directory, not the
directory of the manifest declaring the override. For a canister that comes from a
dependency, that is the dependency’s own
directory.
CLI Commands
View settings:
icp canister settings show my-canisterUpdate settings:
icp canister settings update my-canister --compute-allocation 10Sync settings from configuration:
icp canister settings sync my-canisterSee Also
- Configuration Reference — Full icp.yaml schema
- Managing Environments — Environment-specific settings
- CLI Reference —
canister settingscommands