Configure Sentry DSN for lndhub-go
This commit is contained in:
		
							parent
							
								
									05d0a19b5f
								
							
						
					
					
						commit
						9f886cc286
					
				| @ -1,23 +1,30 @@ | |||||||
| { | { | ||||||
|   "id": "lndhub-go", |   "id": "lndhub-go", | ||||||
|   "jwt_secret": { |   "jwt_secret": { | ||||||
|     "encrypted_data": "cFost8pLsoJ/8Gp5m/TgN8xjMkvk0oZuEZ3XfxDIaYjOVYi3fEX8\n", |     "encrypted_data": "3T4JYnoISKXCnatCBeLCXyE8wVjzphw5/JU5A0vHfQ2xSDZreIRQ\n", | ||||||
|     "iv": "47gV4v/D+10B6xqu\n", |     "iv": "bGQZjCk6FtD/hqVj\n", | ||||||
|     "auth_tag": "MKEyVFfJ3f5pxWRSyMH4Rw==\n", |     "auth_tag": "CS87+UK1ZIFMiNcNaoyO6w==\n", | ||||||
|     "version": 3, |     "version": 3, | ||||||
|     "cipher": "aes-256-gcm" |     "cipher": "aes-256-gcm" | ||||||
|   }, |   }, | ||||||
|   "postgresql_password": { |   "postgresql_password": { | ||||||
|     "encrypted_data": "YSMEIWdZn08lyrZeJNAUZ5xwKhWHESa1A5MojKJ/5iiE\n", |     "encrypted_data": "u8kf/6WdSTzyIz2kF+24JgOPLndWH2WmTFZ3CToJsnay\n", | ||||||
|     "iv": "0mlURPOohnKbG+i8\n", |     "iv": "KqLtV2UuaAzJx7C8\n", | ||||||
|     "auth_tag": "bqIOqFEEIxA99wlvpTqxFA==\n", |     "auth_tag": "3aqx45+epb2NFkNfOfG89A==\n", | ||||||
|     "version": 3, |     "version": 3, | ||||||
|     "cipher": "aes-256-gcm" |     "cipher": "aes-256-gcm" | ||||||
|   }, |   }, | ||||||
|   "admin_token": { |   "admin_token": { | ||||||
|     "encrypted_data": "Jv2vQySZT9qn87g24IOYK1dpfSbZoUE/8VtZhzljQGIL\n", |     "encrypted_data": "Z737fXqRE9JHfunRhc2GG281dFFN1bvBvTzTDzl/Vb8O\n", | ||||||
|     "iv": "kjtrzmjTFKQq+nTV\n", |     "iv": "oKLQJbD67tiz2235\n", | ||||||
|     "auth_tag": "3YbOzU/ndVARbHTU1hoa9g==\n", |     "auth_tag": "SlVIqC9d9SRoO78M7cBjTw==\n", | ||||||
|  |     "version": 3, | ||||||
|  |     "cipher": "aes-256-gcm" | ||||||
|  |   }, | ||||||
|  |   "sentry_dsn": { | ||||||
|  |     "encrypted_data": "gmDHGDWkTIvaXjcWMs1dnKnbqtsADPJ2mLmWw8Idj6RVevU5CabjvviAxEo1\n3hs2LWuObumRSCQt2QKap191uMq3CL2+da53hbsv+JUkxl4=\n", | ||||||
|  |     "iv": "Yt0fSsxL4SNicwUY\n", | ||||||
|  |     "auth_tag": "j7BWbcNnymHHMNTADWmCNw==\n", | ||||||
|     "version": 3, |     "version": 3, | ||||||
|     "cipher": "aes-256-gcm" |     "cipher": "aes-256-gcm" | ||||||
|   } |   } | ||||||
|  | |||||||
| @ -14,6 +14,7 @@ | |||||||
|     "roles": [ |     "roles": [ | ||||||
|       "base", |       "base", | ||||||
|       "kvm_guest", |       "kvm_guest", | ||||||
|  |       "sentry_client", | ||||||
|       "bitcoind", |       "bitcoind", | ||||||
|       "cln", |       "cln", | ||||||
|       "lnd", |       "lnd", | ||||||
| @ -25,6 +26,7 @@ | |||||||
|       "kosmos-base", |       "kosmos-base", | ||||||
|       "kosmos-base::default", |       "kosmos-base::default", | ||||||
|       "kosmos_kvm::guest", |       "kosmos_kvm::guest", | ||||||
|  |       "kosmos_sentry::client", | ||||||
|       "tor-full", |       "tor-full", | ||||||
|       "tor-full::default", |       "tor-full::default", | ||||||
|       "kosmos-bitcoin::bitcoind", |       "kosmos-bitcoin::bitcoind", | ||||||
| @ -106,6 +108,7 @@ | |||||||
|   "run_list": [ |   "run_list": [ | ||||||
|     "role[base]", |     "role[base]", | ||||||
|     "role[kvm_guest]", |     "role[kvm_guest]", | ||||||
|  |     "role[sentry_client]", | ||||||
|     "recipe[tor-full]", |     "recipe[tor-full]", | ||||||
|     "role[bitcoind]", |     "role[bitcoind]", | ||||||
|     "role[cln]", |     "role[cln]", | ||||||
|  | |||||||
| @ -67,7 +67,8 @@ template "#{source_dir}/.env" do | |||||||
|     strict_rate_limit: node['lndhub-go']['strict_rate_limit'], |     strict_rate_limit: node['lndhub-go']['strict_rate_limit'], | ||||||
|     burst_rate_limit: node['lndhub-go']['burst_rate_limit'], |     burst_rate_limit: node['lndhub-go']['burst_rate_limit'], | ||||||
|     branding: node['lndhub-go']['branding'], |     branding: node['lndhub-go']['branding'], | ||||||
|     webhook_url: node['lndhub-go']['webhook_url'] |     webhook_url: node['lndhub-go']['webhook_url'], | ||||||
|  |     sentry_dsn: credentials['sentry_dsn'] | ||||||
|   } |   } | ||||||
|   notifies :restart, 'service[lndhub-go]', :delayed |   notifies :restart, 'service[lndhub-go]', :delayed | ||||||
| end | end | ||||||
|  | |||||||
| @ -4,7 +4,7 @@ maintainer_email 'mail@kosmos.org' | |||||||
| license 'MIT' | license 'MIT' | ||||||
| description 'Installs/configures Sentry' | description 'Installs/configures Sentry' | ||||||
| version '0.1.0' | version '0.1.0' | ||||||
| chef_version '>= 16.0' | chef_version '>= 15.0' | ||||||
| issues_url 'https://gitea.kosmos.org/kosmos/chef/issues' | issues_url 'https://gitea.kosmos.org/kosmos/chef/issues' | ||||||
| source_url 'https://gitea.kosmos.org/kosmos/chef' | source_url 'https://gitea.kosmos.org/kosmos/chef' | ||||||
| 
 | 
 | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user