18 lines
		
	
	
		
			548 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			548 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| # SPDX-License-Identifier: Apache-2.0
 | |
| 
 | |
| hostname: my-public-vm-01
 | |
| hours: 5
 | |
| price: 20000
 | |
| location:
 | |
|   # Note this is the service IP of the node, and not the IP of the VM.
 | |
|   # This is optional and can be used to pick the node that will offer the service.
 | |
|   node_ip: "173.234.17.2"
 | |
| # This option will ask the node for a public IPv4.
 | |
| # If you chose this option, you will receive the IP of the VM after deployment.
 | |
| ipv4: !PublicIPv4
 | |
| # For IPv6, just specify true or false if you want a public IP
 | |
| public_ipv6: true
 | |
| vcpus: 2
 | |
| memory_gib: 2
 | |
| disk_size_gib: 20
 |