如何使用AWS Inspector服务跨多个帐户工作,以便实验室帐户中的一个Inspector服务可以从其他帐户提取信息?
这不能做到:
<xsl:call-template name="incrementValue">
<xsl:with-param name="i">0</xsl:with-param>
</xsl:call-template>
<xsl:template name="incrementValue">
<xsl:param name="i"/>
<xsl:if test="$i <= 10">
<xsl:value-of select="/root/*/@cpu[i]" />
<xsl:call-template name="incrementValue">
<xsl:with-param name="i" select="$i + 1"/>
</xsl:call-template>
</xsl:if>
</xsl:template>
基本上,尝试使用AWS Inspector为我拥有的所有帐户集中评估。