diff --git a/src/cloud-formation/README.md b/src/cloud-formation/README.md index 477d47b8e..805f6f962 100644 --- a/src/cloud-formation/README.md +++ b/src/cloud-formation/README.md @@ -73,7 +73,9 @@ indexer deployments. A plaintext API key for the [transaction stream service endpoint] you are connecting to, for example an - [Aptos Labs transaction stream service API key]. + [Aptos Labs transaction stream service API key]. Note that you'll need to + prepend `https://` as applicable if it is a public endpoint, for example + `https://grpc.devnet.aptoslabs.com:443` @@ -96,7 +98,7 @@ indexer deployments. Description - `/emojicoin/grpc-data-service-url/` + `/emojicoin/grpc-data-service-url/` @@ -120,14 +122,14 @@ indexer deployments. - `/emojicoin/minimum-starting-version/` + `/emojicoin/minimum-starting-version/` A transaction version number prior to the version in which the target Move package was published. - `/emojicoin/package-address/` + `/emojicoin/package-address/` The address of the Move package you want to index. @@ -135,9 +137,10 @@ indexer deployments. - > Substitute either `mainnet` or `testnet` for `` depending - > on the network you want to index (create a parameter for each network if - > you want to run deployments for both). + > Substitute either `mainnet`, `testnet`, or `devnet` for + > `` depending on the network you want to index + > (create a parameter for each network if you want to run deployments for + > all). 1. Create the following [IAM roles]: diff --git a/src/cloud-formation/deploy-indexer-main.yaml b/src/cloud-formation/deploy-indexer-main.yaml index a846b99fd..eebd44b07 100644 --- a/src/cloud-formation/deploy-indexer-main.yaml +++ b/src/cloud-formation/deploy-indexer-main.yaml @@ -1,6 +1,6 @@ --- parameters: - BrokerImageVersion: '1.0.0' + BrokerImageVersion: '1.0.1' DeployAlb: 'true' DeployAlbDnsRecord: 'true' DeployBastionHost: 'true' @@ -20,7 +20,7 @@ parameters: EnableWafRulesWebSocket: 'false' Environment: 'main' Network: 'testnet' - ProcessorImageVersion: '1.0.0' + ProcessorImageVersion: '1.0.1' VpcStackName: 'emoji-vpc' tags: null template-file-path: 'src/cloud-formation/indexer.cfn.yaml' diff --git a/src/cloud-formation/deploy-indexer-production.yaml b/src/cloud-formation/deploy-indexer-production.yaml index af844b796..4de5c7651 100644 --- a/src/cloud-formation/deploy-indexer-production.yaml +++ b/src/cloud-formation/deploy-indexer-production.yaml @@ -1,6 +1,6 @@ --- parameters: - BrokerImageVersion: '1.0.0' + BrokerImageVersion: '1.0.1' DeployAlb: 'true' DeployAlbDnsRecord: 'true' DeployBastionHost: 'true' @@ -19,8 +19,8 @@ parameters: EnableWafRulesRestApi: 'false' EnableWafRulesWebSocket: 'false' Environment: 'production' - Network: 'testnet' - ProcessorImageVersion: '1.0.0' + Network: 'devnet' + ProcessorImageVersion: '1.0.1' VpcStackName: 'emoji-vpc' tags: null template-file-path: 'src/cloud-formation/indexer.cfn.yaml' diff --git a/src/cloud-formation/indexer.cfn.yaml b/src/cloud-formation/indexer.cfn.yaml index a35655785..1e1df2570 100644 --- a/src/cloud-formation/indexer.cfn.yaml +++ b/src/cloud-formation/indexer.cfn.yaml @@ -206,6 +206,7 @@ Parameters: AllowedValues: - 'mainnet' - 'testnet' + - 'devnet' Type: 'String' PostgrestImageVersion: Default: 'v12.2.3'